New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
ItemCheck
The ItemCheck event fires after a user checks or unchecks an item's checkbox. To fire automatically the AutoPostBack property should be set to True.
The event handler receives two parameters:
-
The instance of the listbox firing the event
-
An event arguments parameter containing the following property:
- Item - the RadListBoxItem object that has just been checked/unchecked
C#
protected void RadListBox1_ItemCheck(object sender, RadListBoxItemEventArgs e)
{
Label.Text = e.Item.Text;
}