Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
710
Using an ig_spell control works fine on my page until a panel with an APS:RadioButtonList is visible
posted

Using an ig_spell control works fine on my page until a panel with an APS:RadioButtonList is visible. Then the spell checker does not fire.

The TextComponentId="txtNotes" and ButtonId=cmdCheckSpelling reside in a different panel. There are multiple panels and the spell checker works fine in every other configuration until the radiobutton list is displayed.

This is the relevant page code if needed:

<ig_spell:WebSpellChecker ID="WebSpellChecker1" runat="server" ButtonId=cmdCheckSpelling TextComponentId="txtNotes">

<DialogOptions Modal="True" ShowNoErrorsMessage="True" />

</ig_spell:WebSpellChecker>

 <igmisc:WebPanel ID="wpExitInterview" runat="server" BackColor="White" Font-Names="Tahoma" StyleSetName="" Width="500px" Height="700px" Expanded=false >

<PanelStyle BackColor="PaleTurquoise">

<BorderDetails ColorBottom="Gray" ColorLeft="224, 224, 224" ColorRight="Gray" StyleBottom="Solid"

StyleLeft="Solid" StyleRight="Solid" WidthBottom="1px" WidthLeft="1px" WidthRight="1px" />

<Padding Left="3px" Top="3px" />

</PanelStyle>

<Header Text="Exit Interview" TextAlignment="Left">

<ExpandedAppearance>

<Styles Font-Names="Tahoma" BorderStyle="Solid" BorderWidth="1px" BackColor="#0099CC" Font-Bold="True" ForeColor="White">

<BorderDetails ColorLeft="158, 190, 245" ColorRight="0, 45, 150" ColorTop="158, 190, 245" WidthBottom="0px" />

<Padding Bottom="1px" Left="4px" Top="1px" />

</Styles>

</ExpandedAppearance>

<HoverAppearance>

<Styles ForeColor="Blue">

</Styles>

</HoverAppearance>

</Header>

<Template>

<asp:Table ID="tbleiSatisfied" runat=server Font-Names=tahoma Font-Size=Small Width=490px>

<asp:TableRow runat=server ID=TableRow12>

<asp:TableCell runat=server ID=pkid_eiSatisfied Visible=False></asp:TableCell>

<asp:TableHeaderCell ID="TableHeaderCell6" runat=server HorizontalAlign=Left VerticalAlign=bottom text="Was employee Satisfied&lt;br&gt;with the following?" Width=190 ></asp:TableHeaderCell>

<asp:TableHeaderCell ID="TableHeaderCell7" runat=server HorizontalAlign=Center VerticalAlign=bottom text="Yes/No" width=100></asp:TableHeaderCell>

<asp:TableHeaderCell ID="TableHeaderCell8" runat=server HorizontalAlign=Left VerticalAlign=bottom text="Comments" width=200></asp:TableHeaderCell>

<asp:TableCell ID="TableCell66" runat="server" Visible=False></asp:TableCell>

</asp:TableRow>

<asp:TableRow runat="server" ID=TableRow13>

<asp:TableCell ID="pk_eiSatisfied1" runat="server" Visible=False Text=1></asp:TableCell>

<asp:TableCell ID="TableCell68" runat="server" Text="Benefits"></asp:TableCell>

<asp:TableCell ID="TableCell69" runat="server" HorizontalAlign=Center>

<asp:RadioButtonList ID="rbEISatisfied1" runat="server" AutoPostBack="True" RepeatDirection=Horizontal Font-Names=tahoma Font-Size=Small>

<asp:ListItem Value="0">Y</asp:ListItem>

<asp:ListItem Value="1">N</asp:ListItem>

</asp:RadioButtonList></asp:TableCell>

<asp:TableCell ID="TableCell71" runat="server"><asp:TextBox ID=tb1_eiSatisfied runat=server Visible=False></asp:TextBox></asp:TableCell>

<asp:TableCell ID="bData_eiSatisfied1" runat="server" Visible=False Text=1></asp:TableCell>

</asp:TableRow>

</asp:Table>

<hr width=99% />

</Template>

</igmisc:WebPanel>