Hi,
I have a page made up of various regions. One of the regions has a form with textareas that are assigned a class of ckeditor. This is used to replace the textareas with ckeditor functionality (I use $( '.ckeditor' ).ckeditor(); to call the ckeditor code)
The form is refreshed using ajax, but when the page is refreshed the ckeditor functionality is lost and replaced with the normal text areas.
The ckeditor editor instances still exist because if I try to call $( '.ckeditor' ).ckeditor(); again I get an error telling me the instance already exists.
Is there any function call that I can use to get the ckeditor functionality to reappear and replace the text areas?
Regards
Paul
I have a page made up of various regions. One of the regions has a form with textareas that are assigned a class of ckeditor. This is used to replace the textareas with ckeditor functionality (I use $( '.ckeditor' ).ckeditor(); to call the ckeditor code)
The form is refreshed using ajax, but when the page is refreshed the ckeditor functionality is lost and replaced with the normal text areas.
The ckeditor editor instances still exist because if I try to call $( '.ckeditor' ).ckeditor(); again I get an error telling me the instance already exists.
Is there any function call that I can use to get the ckeditor functionality to reappear and replace the text areas?
Regards
Paul
Re: How to Refresh a ckeditor field