<rad:RadAjaxManager ID="RadAjaxManager1" runat="server">        <AjaxSettings>                    <rad:AjaxSetting AjaxControlID="btnSavePhoto">                <UpdatedControls>                    <rad:AjaxUpdatedControl ControlID="pnlLoad" LoadingPanelID="RadAjaxLoadingPanel1" />                </UpdatedControls>            </rad:AjaxSetting>                     </AjaxSettings>        </rad:RadAjaxManager><rad:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" Skin="Hay" runat="server"></rad:RadAjaxLoadingPanel><asp:Panel ID="pnlLoad" Visible="false" runat="server">Lalalalala Lalalalalal Lalalalalal Lalalalalal Lalalalalal Lalalalalal<br />Lalalalala Lalalalalal Lalalalalal Lalalalalal Lalalalalal Lalalalalal<br />Lalalalala Lalalalalal Lalalalalal Lalalalalal Lalalalalal Lalalalalal<br /></asp:Panel><rad:RadButton ID="btnSavePhoto" runat="server" Skin="Office2007" OnClick="btnSubmit_Click" Text="Click Me"></rad:RadButton>protected void btnSubmit_Click(object sender, EventArgs e)   {       pnlLoad.Visible = true;   }<t:RadGrid ID="rgTimeMaterial" runat="server" PageSize="200" AllowPaging="True" AllowSorting="True"    AllowMultiRowSelection="true" AutoGenerateColumns="false" Height="510px" GridLines="Both"    ShowFooter="False" CssClass="w980" ShowHeader="True" EnableViewState="true" >     <HeaderStyle Wrap="false" />     <MasterTableView EnableHeaderContextMenu="true" CellPadding="0" CellSpacing="0" AllowMultiColumnSorting="true"        ClientDataKeyNames="Job_Number,EntityCode,AssignedTo" CssClass="w980">         <Columns>               . . .         </Columns>                                 </MasterTableView>     <ItemStyle Font-Names="Arial,Helvetica,sans-serif" Font-Size="9pt" Wrap="false" />     <ClientSettings ColumnsReorderMethod="Reorder" AllowColumnsReorder="True" AllowColumnHide="true"        ReorderColumnsOnClient="True">         <ClientEvents OnRowContextMenu="RowContextMenu" OnRowDblClick="OnRowDblClick" OnRowCreated="RadGrid1_RowCreated"            OnRowSelected="RadGrid1_RowSelected" OnRowDeselected="RadGrid1_RowDeselected"            OnRowSelecting="RadGrid1_RowSelecting" OnGridCreated="GridCreated" />         <Selecting AllowRowSelect="true" EnableDragToSelectRows="true" />         <Scrolling SaveScrollPosition="true" AllowScroll="true" UseStaticHeaders="True">         </Scrolling>         <Resizing AllowColumnResize="true" EnableRealTimeResize="true" ShowRowIndicatorColumn="true"            ClipCellContentOnResize="true" AllowResizeToFit="true" />     </ClientSettings>     <PagerStyle Position="Top" Mode="NextPrevAndNumeric" AlwaysVisible="true" /> </t:RadGrid><t:RadAjaxManager ID="RadAjaxManager1" runat="server" DefaultLoadingPanelID="RadAjaxLoadingPanel1">     <AjaxSettings>         <t:AjaxSetting AjaxControlID="rgTimeMaterial">             <UpdatedControls>                 <t:AjaxUpdatedControl ControlID="rgTimeMaterial" LoadingPanelID="RadAjaxLoadingPanel1" />             </UpdatedControls>         </t:AjaxSetting>       </AjaxSettings>     <ClientEvents OnResponseEnd="RequestEnd" /> </t:RadAjaxManager><telerik:RadWindow ID="RadWindow1" runat="server">   </telerik:RadWindow><script type="text/javascript">        function UseRadWindow() {            var oWnd = $find("<%= RadWindow1.ClientID %>");            oWnd.show();            oWnd.setSize(400, 400);	            oWnd.setUrl("http://www.yahoo.com");            oWnd.minimize();            oWnd.maximize();            oWnd.restore();        }   </script>var dockStates = dockLayout.GetRegisteredDocksState();            var serializer = new JavaScriptSerializer();            var converters = new List<JavaScriptConverter>();            converters.Add(new UnitConverter());            serializer.RegisterConverters(converters);            string stateString = dockStates.Select(state => serializer.Serialize(state)).Aggregate(String.Empty, (current, ser) => current + "|" + ser);Hi ,
I am using the radspell control in client side and this will be get  triggered when the user clicks on the external  button called [Spell check] .
When reaching last incorrect word in 'Not in dictionary' section in spell check window, on clicking the incorrect word the user is able to edit that wrong value. After editing that value the message will come as 'Spell check is complete'. On clicking the [Spell check] button again Spell check window dispalying with the edited value in "Not in dictionary " column and showing the mesage as "Spell check is complete"
Note : The issue is occurring while editing the last incorrect word only. If a word is corrected in middle of the spell check, this issue will not reoccur.
Can you help me out to clear that "not in dictionary" text box values ?

<location path="Telerik.Web.UI.SpellCheckHandler.axd">
<system.web>
<pages validateRequest="false"></pages>
</system.web>
</location>
Any ideas?
