New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
CheckAllCheck
Updated over 6 months ago
The CheckAllCheck event occurs when the check all items check box of the RadComboBox is changed.
The CheckAllCheck event does not fire unless the AutoPostBack property is True .
The CheckAllCheck receives one argument which indicates whether the check all check box is checked or unchecked.
ASPNET
<telerik:RadComboBox RenderMode="Lightweight" ID="RadComboBox1" runat="server" OnCheckAllCheck="RadComboBox1_CheckAllCheck"
EnableCheckAllItemsCheckBox="true" AutoPostBack="true" CheckBoxes="true">
<Items>
<telerik:RadComboBoxItem Text="Item1" />
<telerik:RadComboBoxItem Text="Item2" />
<telerik:RadComboBoxItem Text="Item3" />
</Items>
</telerik:RadComboBox>
<asp:Label ID="Label1" runat="server" />
C#
protected void RadComboBox1_CheckAllCheck(object sender, RadComboBoxCheckAllCheckEventArgs e)
{
bool allChecked = e.CheckAllChecked;
if (allChecked)
{
Label1.Text = "All items are checked.";
}
else
{
Label1.Text = "All items are unchecked";
}
}