New to Telerik UI for ASP.NET AJAXStart a free 30-day trial

TextChanged

The TextChanged fires when you change the selected item. It will fire automatically if the **AutoPostBack="True".**The event fires after the SelectedIndexChanged server event.

The event handler receives two parameters:

  1. The instance of the listbox firing the event

  2. An event arguments parameter containing no methods

C#
protected void RadListBox1_TextChanged(object sender, EventArgs e)
{
	TextBox.Text = RadListBox1.SelectedItem.Text;
}

See Also

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