
Tyson Nero
Top achievements
Rank 1
Tyson Nero
asked on 03 Oct 2010, 05:57 PM
I am seeing some display issues with the RadComboBox in IE8. I have attached a screen shot.
Is this a known bug, or is there a way I can correct this on my end?
Is this a known bug, or is there a way I can correct this on my end?
5 Answers, 1 is accepted
0
Accepted
Hello Tyson,
I guess the your browser is zoomed to 105%, please check this and let us know the result.
Best wishes,
Yana
the Telerik team
I guess the your browser is zoomed to 105%, please check this and let us know the result.
Best wishes,
Yana
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items
0

Tyson Nero
Top achievements
Rank 1
answered on 06 Oct 2010, 01:02 AM
Don't I feel stupid!
0

Teo
Top achievements
Rank 1
answered on 15 May 2013, 04:42 PM
I have the same problem: In IE8 the combobox don't display items list.
0
Hi Teo,
Please provide us with more details. What is your browser and version of Telerik assemblies. Paste your code here. If is possible provide us with a link to your live page.
Kind regards,
Hristo Valyavicharski
the Telerik team
Please provide us with more details. What is your browser and version of Telerik assemblies. Paste your code here. If is possible provide us with a link to your live page.
Kind regards,
Hristo Valyavicharski
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0

Teo
Top achievements
Rank 1
answered on 20 May 2013, 04:04 PM
Applications:
Internet Explorer version 8
Telerik Kendo 2013.1.514.0
Telerik WebUI 2013.1.222.0
Code:
<telerik:RadComboBox ID="uxOrderType"
Height="100%"
AppendDataBoundItems="true"
Width="108px"
runat="server"
OnClientSelectedIndexChanged="OrderTypeIndexChanged"
OnClientLoad="OrderTypeLoad">
<Items>
<telerik:RadComboBoxItem Text="Order Open" Value="OrderOpen"/>
<telerik:RadComboBoxItem Text="Order History" Value="OrderHistory" />
</Items>
</telerik:RadComboBox>
<telerik:RadScriptBlock ID="RadScriptBlock1" runat="server">
var cbxOrderType;
function OrderTypeIndexChanged(sender, args) {
if (!IsLoadPage) {
spinner.spin(spinTarget);
SaveOrderStatusState();
} else {
IsLoadPage = false;
}
CollapseAllRows();
}
function OrderTypeLoad(sender) {
cbxOrderType = sender;
}
</telerik:RadScriptBlock>
Note: This work perfectly in Chrome, Firefox, Safari, IE 7, 9 and 10
Internet Explorer version 8
Telerik Kendo 2013.1.514.0
Telerik WebUI 2013.1.222.0
Code:
<telerik:RadComboBox ID="uxOrderType"
Height="100%"
AppendDataBoundItems="true"
Width="108px"
runat="server"
OnClientSelectedIndexChanged="OrderTypeIndexChanged"
OnClientLoad="OrderTypeLoad">
<Items>
<telerik:RadComboBoxItem Text="Order Open" Value="OrderOpen"/>
<telerik:RadComboBoxItem Text="Order History" Value="OrderHistory" />
</Items>
</telerik:RadComboBox>
<telerik:RadScriptBlock ID="RadScriptBlock1" runat="server">
var cbxOrderType;
function OrderTypeIndexChanged(sender, args) {
if (!IsLoadPage) {
spinner.spin(spinTarget);
SaveOrderStatusState();
} else {
IsLoadPage = false;
}
CollapseAllRows();
}
function OrderTypeLoad(sender) {
cbxOrderType = sender;
}
</telerik:RadScriptBlock>
Note: This work perfectly in Chrome, Firefox, Safari, IE 7, 9 and 10