New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

OnItemLoad

The itemLoad event occurs when item is loaded in RadRadioButtonList.

The event handler receives two parameters:

  1. The instance of the loaded RadRadioButtonList control.

  2. An eventArgs parameter of type Telerik.Web.UI.ButtonListEventArgs, containing the following properties and methods:

Example 1: Handling RadRadioButtonList OnItemLoad event.

<script type="text/javascript">
    function OnItemLoad(sender, args) {
        alert(args.get_item().get_text() + " item loaded!");
    }
</script>

<telerik:RadRadioButtonList runat="server" ID="RadRadioButtonList1">
    <ClientEvents OnItemLoad="OnItemLoad" />
    <Items>
        <telerik:RadioButtonListItem Text="English" Selected="true" />
        <telerik:RadioButtonListItem Text="German" />
        <telerik:RadioButtonListItem Text="French" />
    </Items>
</telerik:RadRadioButtonList>

See Also

In this article