I'm having a problem in IE 8 with the Width of combo boxes
As you can see in the attached image FF works but not correctly
Chrome and IE 8 do not witht he combos taking up the available screen size
Wondering if I'm doing it wrong
<div style="padding:10px;"> |
<telerik:RadComboBox 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" OnClientItemsRequested="ItemsLoaded" ID="RadComboBox2" runat="server" OnClientSelectedIndexChanging="LoadStates"> |
</telerik:RadComboBox> |
<p> |
</p> |
<telerik:RadComboBox Label="State" Width="250px" OnClientItemsRequested="ItemsLoaded" ID="RadComboBox3" runat="server" OnClientSelectedIndexChanging="LoadCities"> |
</telerik:RadComboBox> |
<telerik:RadComboBox Label="City" Width="250px" OnClientItemsRequested="ItemsLoaded" ID="RadComboBox4" runat="server"> |
</telerik:RadComboBox> |
</div> |
As you can see in the attached image FF works but not correctly
Chrome and IE 8 do not witht he combos taking up the available screen size
Wondering if I'm doing it wrong