Hi,
I have written something like this
<asp:Panel runat="server" ID="pnlQuestionText" CssClass="RoundedCorner">
<div class="RoundedCornerDetail">
<h4>
Question Text
</h4>
<asp:TextBox runat="server" ID="txtQuestionText" TextMode="MultiLine" Width="500px"
Height="100px" />
<telerik:RadSpell runat="server" ControlToCheck="txtQuestionText" />
</div>
<ajax:RoundedCornersExtender runat="server" TargetControlID="pnlQuestionText" BorderColor="#D3D3D3"
Radius="10" />
<asp:RequiredFieldValidator runat="server" ID="valQuestionText" ErrorMessage="You must enter question text"
ControlToValidate="txtQuestionText">
<ajax:ValidatorCalloutExtender runat="server" ID="callOut2" TargetControlID="valQuestionText" />
</asp:RequiredFieldValidator>
</asp:Panel>
Here you can find a panel and a rounded corner extender a textbox and a spell checker.
I have 3 panels like this one on the page and note it I have not assign ID property of it.
And I have set few properties of spell checker in my .skin file.
In telerik's previous version i.e. RadControls for ASPNET AJAX Q2 2008 it was working fine.
But in RadControls for ASPNET AJAX Q3 2008, I got error like
"Multiple controls with the same ID 'dialogOpener' were found. FindControl requires that controls have unique IDs."
After that I have given ID to each spell checker then also it was throwing same error.
After that I have removed the spellchecker element from my .skin file and assign the properties to each spell checker then error was gone.
I think the new version having problem with .skin and id with the ajaxtoolkit extender !
Thanks & Regards,
Divyesh Chapaneri
I have written something like this
<asp:Panel runat="server" ID="pnlQuestionText" CssClass="RoundedCorner">
<div class="RoundedCornerDetail">
<h4>
Question Text
</h4>
<asp:TextBox runat="server" ID="txtQuestionText" TextMode="MultiLine" Width="500px"
Height="100px" />
<telerik:RadSpell runat="server" ControlToCheck="txtQuestionText" />
</div>
<ajax:RoundedCornersExtender runat="server" TargetControlID="pnlQuestionText" BorderColor="#D3D3D3"
Radius="10" />
<asp:RequiredFieldValidator runat="server" ID="valQuestionText" ErrorMessage="You must enter question text"
ControlToValidate="txtQuestionText">
<ajax:ValidatorCalloutExtender runat="server" ID="callOut2" TargetControlID="valQuestionText" />
</asp:RequiredFieldValidator>
</asp:Panel>
Here you can find a panel and a rounded corner extender a textbox and a spell checker.
I have 3 panels like this one on the page and note it I have not assign ID property of it.
And I have set few properties of spell checker in my .skin file.
In telerik's previous version i.e. RadControls for ASPNET AJAX Q2 2008 it was working fine.
But in RadControls for ASPNET AJAX Q3 2008, I got error like
"Multiple controls with the same ID 'dialogOpener' were found. FindControl requires that controls have unique IDs."
After that I have given ID to each spell checker then also it was throwing same error.
After that I have removed the spellchecker element from my .skin file and assign the properties to each spell checker then error was gone.
I think the new version having problem with .skin and id with the ajaxtoolkit extender !
Thanks & Regards,
Divyesh Chapaneri