I have a radcombobox with checkboxes and Multiple values in the drop-down, when I check values in the radcombobox , OnitemChecked server side event is called and based on the values checked data shows up on the page.
But when I checked Select All for Checkboxes, no event is called. Could someone please suggest me which event is related to the Select All Checkboxes feature
I am looking for a server side event. Please see my code above for radcombobox.
Thanks,
But when I checked Select All for Checkboxes, no event is called. Could someone please suggest me which event is related to the Select All Checkboxes feature
<telerik:RadComboBox ID="uxRCBCustomerName" runat="server" Width="200px" EnableCheckAllItemsCheckBox="true" DropDownWidth="500px" height="120px" DataTextField="HPDCustomerName" DataValueField="HPDCustomerID" AllowCustomText="true" CheckBoxes="true" DataKeyField="employerGroupID" EmptyMessage="No Promo Found" AutoPostBack="true" CheckedItemsTexts="DisplayAllInInput" AppendDataBoundItems="true" OnItemChecked="uxRCBCustomerName_ItemChecked" EnableViewState="true" MarkFirstMatch="true" CausesValidation="false" > <ItemTemplate> <ul> <li class="col1" > <%# DataBinder.Eval(Container, "Text")%> </li> <li class="col2"> <%# If(DataBinder.Eval(Container.DataItem, "hasJOnly"), "J", "")%><%# If(DataBinder.Eval(Container.DataItem, "hasJM"), "JM", "")%><%# If(DataBinder.Eval(Container.DataItem, "hasJOnly")=False and DataBinder.Eval(Container.DataItem, "hasJM")=false, "N/A", "")%></td> </li> </ul> </ItemTemplate> </telerik:RadComboBox>I am looking for a server side event. Please see my code above for radcombobox.
Thanks,
