Hi,
Following an update to 2014 Q1 release (base build and the 318 build) I have found that the control below is not firing the OnClientItemChecked event, given that the event seems to work on the demo site I assume that this issue is caused by my use of a checkbox within the ItemTemplate. This works just fine on earlier 2013 releases. Anyone know of a work around on this?
Regards
Jon
Following an update to 2014 Q1 release (base build and the 318 build) I have found that the control below is not firing the OnClientItemChecked event, given that the event seems to work on the demo site I assume that this issue is caused by my use of a checkbox within the ItemTemplate. This works just fine on earlier 2013 releases. Anyone know of a work around on this?
Regards
Jon
<telerik:RadListBox ID="uxOperativeListBox" runat="server" Height="330" Width="380" OnItemDataBound="uxOperativeListBox_ItemDataBound" OnClientItemChecked="OperativeListBoxClicked"> <ItemTemplate> <div> <asp:CheckBox runat="server" ID="uxCheckbox" Checked='false' style="vertical-align:middle;" /> <asp:Image runat="server" ID="uxOperativeStatus" ImageUrl="~/Images/Icons/16/ok.png" style="vertical-align:middle;" /> <asp:Label runat="server" ID="uxOperative" AssociatedControlID="uxCheckbox" style="vertical-align:middle;"></asp:Label> </div> </ItemTemplate></telerik:RadListBox>