I have everything just about as i want it now apart from one thing, i need to populate CKeditor with MySQL data from an Ajax call,
I f i use just a plain textarea with no CKeditor assigned the textarea is populated when the user selects from a dropdown, when i try this with a CKeditor instance assigned it does not, where is the work around for this in the docs so that the instance is populated rather than the un-instanced textarea (need pointers only not a re-writing of code), thanks
I f i use just a plain textarea with no CKeditor assigned the textarea is populated when the user selects from a dropdown, when i try this with a CKeditor instance assigned it does not, where is the work around for this in the docs so that the instance is populated rather than the un-instanced textarea (need pointers only not a re-writing of code), thanks
Re: populate instance from Ajax/MySQL select
And don't forget to call CKEDITOR.remove when you want to reuse CKEDITOR.replace for the same editor instance without reloading the web page (if, for instance, the user selects another item in the drop-down menu). Otherwise you might have problems with CKEDITOR not loading properly the second time (at least that's what I had).
Jean
Re: populate instance from Ajax/MySQL select
Jean