Got radspell check working on tinymce save button.with the below code.
tinyMCE.init({
theme : "advanced",
mode : "textareas",
plugins : "save",
theme_advanced_buttons3_add : "save",
save_onsavecallback : "SpellCheck"
});
function SpellCheck(){
RadSpell.StartSpellCheck();
}
<
rad:RadSpell id="RadSpell" ButtonType="None" runat="server" ControlToCheck="content" CustomDictionarySuffix="-Custom" IsClientID="true" OnClientCheckStarted ="saveEditors" OnClientDialogClosing="updateEditors"/></td>
Everything works perfectly in IE & mozilla on windows. But on Mac safari ,error is shown for each and every word on the page. Is it because the files provided in tinySpell.zip are old (which don't support mac safari)?