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

Inserted

The Inserted event fires after the items have been inserted in the destination RadListBox. It is fired after the Deleted, but before the Transferred event.

The event handler receives two parameters:

  1. The instance of the destination RadListBox firing the event

  2. An event arguments parameter containing the following property:

  • Items - collection of RadListBoxItem objects which have been inserted.
protected void DestinationListBox_Inserted(object sender, RadListBoxEventArgs e)
{
    Label.Text += e.Items.Count.ToString() + " items are inserted";
}
Protected Sub DestinationListBox_Inserted(sender As Object, e As RadListBoxEventArgs)
    Label.Text += e.Items.Count.ToString() + " items are inserted"
End Sub

See Also

In this article