Hello
i want to AJAX spell check functionality in my application
i done this code
<telerik:RadEditor ID="RadEditor1" runat="server" EditModes="Design"
Skin="Office2007" Height="200px" Width="460px">
<Tools>
<telerik:EditorToolGroup>
<telerik:EditorTool Enabled="true" Name="AjaxSpellCheck" ShowIcon="true" />
<telerik:EditorTool Enabled="true" Name="FindAndReplace" ShowIcon="true" />
<telerik:EditorTool Enabled="true" Name="Undo" ShowIcon="true" />
<telerik:EditorTool Enabled="true" Name="Redo" ShowIcon="true" />
<telerik:EditorTool Enabled="true" Name="Cut" ShowIcon="true" />
<telerik:EditorTool Enabled="true" Name="Copy" ShowIcon="true" />
<telerik:EditorTool Enabled="true" Name="Paste" ShowIcon="true" />
</telerik:EditorToolGroup>
<telerik:EditorToolGroup>
<telerik:EditorTool Enabled="true" Name="Bold" ShowIcon="true" />
<telerik:EditorTool Enabled="true" Name="Italic" ShowIcon="true" />
<telerik:EditorTool Enabled="true" Name="Underline" ShowIcon="true" />
</telerik:EditorToolGroup>
</Tools>
<Content></Content>
</telerik:RadEditor>
ON page load
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Not Page.IsPostBack Then
RadEditor1.Languages.Add(New SpellCheckerLanguage("en-US", "English"))
End If
End Sub
And in web.confige file
<add verb="*" validate="false" path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI"/>
But it genrates error like thisss : Spell Check Server Error 500
shryan reply me fast
i want to AJAX spell check functionality in my application
i done this code
<telerik:RadEditor ID="RadEditor1" runat="server" EditModes="Design"
Skin="Office2007" Height="200px" Width="460px">
<Tools>
<telerik:EditorToolGroup>
<telerik:EditorTool Enabled="true" Name="AjaxSpellCheck" ShowIcon="true" />
<telerik:EditorTool Enabled="true" Name="FindAndReplace" ShowIcon="true" />
<telerik:EditorTool Enabled="true" Name="Undo" ShowIcon="true" />
<telerik:EditorTool Enabled="true" Name="Redo" ShowIcon="true" />
<telerik:EditorTool Enabled="true" Name="Cut" ShowIcon="true" />
<telerik:EditorTool Enabled="true" Name="Copy" ShowIcon="true" />
<telerik:EditorTool Enabled="true" Name="Paste" ShowIcon="true" />
</telerik:EditorToolGroup>
<telerik:EditorToolGroup>
<telerik:EditorTool Enabled="true" Name="Bold" ShowIcon="true" />
<telerik:EditorTool Enabled="true" Name="Italic" ShowIcon="true" />
<telerik:EditorTool Enabled="true" Name="Underline" ShowIcon="true" />
</telerik:EditorToolGroup>
</Tools>
<Content></Content>
</telerik:RadEditor>
ON page load
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Not Page.IsPostBack Then
RadEditor1.Languages.Add(New SpellCheckerLanguage("en-US", "English"))
End If
End Sub
And in web.confige file
<add verb="*" validate="false" path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI"/>
But it genrates error like thisss : Spell Check Server Error 500
shryan reply me fast