This question is locked. New answers and comments are not allowed.
Hello,
I was planning to use telerik MVC editors for a project that I am working on, but it appears that they do not work out of the box when inside ajax forms. This didn't entirely surprise me as I understand there is javascript initialisation required to make the editor functional, ie:
I was planning to use telerik MVC editors for a project that I am working on, but it appears that they do not work out of the box when inside ajax forms. This didn't entirely surprise me as I understand there is javascript initialisation required to make the editor functional, ie:
jQuery('#Form_LongDescription').tEditor();
My question is, can I safely call this function manually upon swapping in the new form? Better yet, can I give all my editors a marker class, and call "$('.editor').tEditor()" on the whole page after any partial update? (This potentially will re-call tEditor() on already initialised editors outside the partial update, but presumeably the plugin is designed to ignore a duplicate ctor call?)