Hi
I have a page with 4 gridviews, but only one of them contains two instances of CKEditor. (asp.net version)
this is the line for example:
<CKEditor:CKEditorControl ID="CKEditor_itemContentHeb" Width="500" Height="300" style="width:500px;height:200px;" BasePath="scripts/ckeditor/" runat="server" Text=' <%# Bind("itemContentHeb") %>' Toolbar="Bold|Italic|Underline|Strike|- |NumberedList|BulletedList | -|Source" BodyClass="ckEditor" RemovePlugins="elementspath" ResizeEnabled="false" ></CKEditor:CKEditorControl>
It works great, but the problem is that every ajax call (like delete or insert) on the OTHER gridviews (which DOES NOT contains the CKEditor), makes all of the CKeditor instances to refresh.
Is there a way to avoid it?
Thank you!