Hi,
I have a Ajaxtoolkit Editor and would like to embed an open-source spell checker. I tried various posts to use TinyMCE Editor, but it seems to not work when I have it in a gridview.
Any insight on how to add spell check feature to the editor control would be very helpful.
<asp:GridView ID="GV_CandDesc" runat="Server" AutoGenerateColumns="False"
AutoGenerateEditButton="true" BackColor="White" BorderColor="#DEDFDE"
BorderStyle="None" BorderWidth="1px" CellPadding="4" DataKeyNames="emplid"
EnableViewState="True" ForeColor="Black" GridLines="Vertical"
OnRowCancelingEdit="CancelCand_descRecord" OnRowCommand="GV_DescRowCommand"
OnRowEditing="EditCand_DescRecord" OnRowUpdating="UpdateCand_descRecord"
ShowFooter="false" SkinID="RecordList" Width="100%">
<Columns>
<asp:TemplateField HeaderText="Comments" ItemStyle-CssClass="infotitle1">
<ItemTemplate>
<%# DataBinder.Eval(Container.DataItem,"cand_desc") %>
</ItemTemplate>
<EditItemTemplate>
<cc1:Editor ID="txtDescComments" runat="server" Content='<%# Bind("cand_desc") %>'/>
</EditItemTemplate>
</asp:TemplateField>
</Columns>
<EmptyDataTemplate>
<table ID="NoComm_tbl" style="margin-right: 0px" width="100%">
<tr>
<td class="Span_Title" style="width: 100%">
Comments</td>
</tr>
</table>
<table ID="No_can_desc_tbl" style="margin-right: 0px" width="100%">
<tr>
<td>
<cc1:Editor ID="txtnewDescComment" runat="server" />
</td>
</tr>
<tr>
<td class="Span_Title" width="100%">
<asp:LinkButton ID="btnDescInsert" runat="server" CommandName="NoDescInsert"
CssClass="infotitle" Text="Save" />
</td>
</tr>
</table>
</EmptyDataTemplate>
</asp:GridView>
Thanks,