I have a code which is selecting the checkbox and working very well in the internet explore 7. But could not selecting the checkbox in Internet Explorer 6.0
Can any one tell me why this is not working in the IE 6.0. Here is source code
<
telerik:RadComboBox ID="combobox1" runat="server" HighlightTemplatedItems="true"
Height="120px" Skin="Default" DataTextField="CityName" DataValueField="CityNameid"
Text="City" AutoPostBack="true">
<CollapseAnimation Duration="300" Type="OutQuint" />
<HeaderTemplate>
<asp:Label ID="lblCity" Height="20px" Text="City" runat="server"></asp:Label>
</HeaderTemplate>
<ItemTemplate>
<asp:CheckBox AutoPostBack="true" runat="server" ID="chkbxCity" OnCheckedChanged="getSelectedCity" /> <%#DataBinder.Eval(Container.DataItem, "CityName")%>
</ItemTemplate>
<CollapseAnimation Duration="300" Type="OutQuint" />
</telerik:RadComboBox>
I have checked in debug mode when I ran it in the IE 7 it goes to the function
OnCheckedChanged="getSelectedCity"
but when I ran it in the IE 6 It does not go in the above stated function
any help
Feejaz