I have four combo boxes tied together
When I select a value in the first one once the data loads the drop down expand automatically
When i choose a value for the second combo box the third open on load
I was hoping that OpenDropDownOnLoad="false" would stop this behavior but it doesn't...
How do I stop it?
<div style="width:985px; padding:10px;"> |
<telerik:RadComboBox EnableVirtualScrolling="false" OpenDropDownOnLoad="false" Width="250px" Label="Report Options" ID="RadComboBox1" runat="server" OnClientSelectedIndexChanging="LoadLanCodes" OnClientDropDownOpening="ClearBoxes"> |
<Items> |
<telerik:RadComboBoxItem runat="server" Selected="True" value="" Text="Any" /> |
<telerik:RadComboBoxItem runat="server" Text="Lan Code" Value="lancode" /> |
<telerik:RadComboBoxItem runat="server" Text="Support Team" Value="supportteam" /> |
</Items> |
</telerik:RadComboBox> |
<telerik:RadComboBox Width="250px" EnableVirtualScrolling="false" OpenDropDownOnLoad="false" OnClientItemsRequested="ItemsLoaded" ID="RadComboBox2" runat="server" OnClientSelectedIndexChanging="LoadStates"> |
</telerik:RadComboBox> |
<p> |
</p> |
<telerik:RadComboBox Label="State" OpenDropDownOnLoad="false" EnableVirtualScrolling="false" Width="250px" OnClientItemsRequested="ItemsLoaded" ID="RadComboBox3" runat="server" OnClientSelectedIndexChanging="LoadCities"> |
</telerik:RadComboBox> |
<telerik:RadComboBox Label="City" OpenDropDownOnLoad="false" Width="250px" EnableVirtualScrolling="false" OnClientItemsRequested="ItemsLoaded" ID="RadComboBox4" runat="server"> |
</telerik:RadComboBox> |
</div> |
When I select a value in the first one once the data loads the drop down expand automatically
When i choose a value for the second combo box the third open on load
I was hoping that OpenDropDownOnLoad="false" would stop this behavior but it doesn't...
How do I stop it?