Hi I've been trying to interact two combobox's. But could not find out how.
I have two combobox's like this:
I have two combobox's like this:
<
telerik:RadComboBox ID="RadComboBox1" runat="server" Skin="Office2007" EnableLoadOnDemand="true" HighlightTemplatedItems="true" DropDownWidth="150px" Width="150px" onitemsrequested="RadComboBox1_ItemsRequested" />
<telerik:RadComboBox ID="RadComboBox2" runat="server" Skin="Office2007" EnableLoadOnDemand="true" HighlightTemplatedItems="true" DropDownWidth="150px" Width="150px" onitemsrequested="RadComboBox2_ItemsRequested" />
I am filling their content in C# code.
private
void RadComboBox1_ItemsRequested(object o, Telerik.Web.UI.RadComboBoxItemsRequestedEventArgs e)
{
// fill first Combobox's content
}
How can i get the selected value of first combobox? because i need that to fill second combobox.