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

Updated

The Updated event fires after the Updating event (if not cancelled) and after the database has been updated (if AllowAutomaticUpdates="True")

The event handler receives two parameters:

  1. The instance of the listbox firing the event

  2. An event arguments parameter containing the following property:

  • Items - collection of all RadListBoxItem objects which will be affected by the reordering. This collection is different from the Items collection in the Reordering/Reordered events
protected void RadListBox1_Updated(object sender, RadListBoxEventArgs e)
{
    Label.Text = "Updated Item new index is " + e.Items[0].Index;
}
Protected Sub RadListBox1_Updated(sender As Object, e As RadListBoxEventArgs)
    Label.Text = "Updated Item new index is " + e.Items(0).Index.ToString()
End Sub

See Also

In this article