In one of my form @ page load ievent i set radeditor visible=false,
but in that page after some clientside click event i set radeditor visible=true.
For this i use custom dictionarysuffix &
spellchecksettings-spellcheckprovider="PhoneticProvider"
at that time spell check raise me an error :
The spell check command not implemented yet..
But it works fine in other page which having rad editor visible=true
my code for that ,
but in that page after some clientside click event i set radeditor visible=true.
For this i use custom dictionarysuffix &
spellchecksettings-spellcheckprovider="PhoneticProvider"
at that time spell check raise me an error :
The spell check command not implemented yet..
But it works fine in other page which having rad editor visible=true
my code for that ,
<TELERIK:RADEDITOR stripformattingoptions="NoneSupressCleanMessage, Span" id="FTBGoal" visible="true" enabled="true" editmodes="Design" height="140px" width="650px" toolsfile="~/App_Themes/RadEditorTools.xml" dialoghandlerurl="Telerik.Web.UI.DialogHandler.axd" spellchecksettings-ajaxurl="Telerik.Web.UI.SpellCheckHandler.axd" runat="server" bordercolor="#333333" borderstyle="Solid" borderwidth="1px" spellchecksettings-spellcheckprovider="PhoneticProvider"> <CSSFILES> <TELERIK:EDITORCSSFILE value="~/App_Themes/RadEditor.css" /> </CSSFILES> </TELERIK:RADEDITOR> <TELERIK:RADSPELL id="RadSpell1" runat="server" buttontype="none" /> <script type="text/javascript"> function check(b) { Telerik.Web.UI.Editor.CommandList.SpellCheck = function(commandName, editor) { var spell = GetRadSpell('<%= RadSpell1.ClientID %>'); spell.spellCheck(new PrometheusTextSource(editor)); return false; } var PrometheusTextSource = function(editor) { this._editor = editor; this.get_text = function() { return this._editor.get_html(); }; this.set_text = function(value) { this._editor.set_html(value); }; } }</script>