New to Telerik UI for ASP.NET AJAX? Start a 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:
-
The instance of the listbox firing the event
-
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
C#
protected void RadListBox1_Updated(object sender, RadListBoxEventArgs e)
{
Label.Text = "Updated Item new index is " + e.Items[0].Index;
}