New to Telerik UI for ASP.NET AJAXStart a 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.
C#
protected void DestinationListBox_Inserted(object sender, RadListBoxEventArgs e)
{
	Label.Text += e.Items.Count.ToString() + " items are inserted";
}

See Also

In this article
See Also
Not finding the help you need?
Contact Support