I am attempting to disable embedded scripts for the radEditor on a project that uses radEditor with RadSpell, Dialogs and a couple Tooltips. I am disabling all EmbeddedScripts in the web.config with:
<add key="Telerik.EnableEmbeddedScripts" value="false"/>
From my research on your forums I found I also need to use the source version of the EditorDialogs and configure them to load their scripts from source as well. Unfortunately my version does not include the source for the EditorDialogs.
The reason I would like to disable embedded scripts is because I am running into an error with the xhtml filter and I cannot find a way to permanently disable it across the entire page lifecycle. I can disable it using the OnClientLoad event of the editor like so:
editor.get_filtersManager().set_enableXhtmlFilter(
false);
This works fine when the control is initially loaded, however it does not persist on an AJAX postback.
