I was unable to find any mention of this, but when using the latest official release and adding a "Label" property to a combobox, the width will not display correctly in Chrome. About 158 pixels seems to be the minimum width that will be displayed. Larger widths work as expected. For instance, the following
renders a correct width of 60 pixels in IE, but Chrome defaults to ~158 pixels (attached screenshots). I've tried several settings without any luck. Is there a workaround?
<%@ Page Language="C#" %> |
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
<script runat="server"> |
</script> |
<html xmlns="http://www.w3.org/1999/xhtml"> |
<head runat="server"> |
<title></title> |
</head> |
<body> |
<form id="form1" runat="server"> |
<telerik:RadScriptManager ID="RadScriptManager1" Runat="server"> |
</telerik:RadScriptManager> |
<telerik:RadComboBox ID="RadComboBox1" runat="server" Width="60" DropDownWidth="60" Skin="Default" Label="Label"> |
<Items> |
<telerik:RadComboBoxItem runat="server" Text="item1" Value="1" /> |
<telerik:RadComboBoxItem runat="server" Text="item2" Value="2" /> |
<telerik:RadComboBoxItem runat="server" Text="item3" Value="3" /> |
</Items> |
</telerik:RadComboBox> |
</form> |
</body> |
</html> |
renders a correct width of 60 pixels in IE, but Chrome defaults to ~158 pixels (attached screenshots). I've tried several settings without any luck. Is there a workaround?