Hello,
I have a strange situation maybe you can help.
I have a custom control that contains three RadComboBoxes. They have their width set to 60px. In Mozzila and IE 8 they show up just fine , but in Chrome , the Input control has bigger width as you can see from the attached images. I have no custom skin .
| <div runat="server" id="ContainerDiv"> |
| <telerik:RadComboBox ID="cbYear" runat="server" Height="200px" Width="60px" |
| DropDownWidth="60px" |
| OnClientLoad="cbYear_Loaded" |
| OnClientSelectedIndexChanged="cbYear_SelectedIndexChanged" |
| OnClientTextChange="cb_OnClientTextChange" |
| CausesValidation="false" MarkFirstMatch="false" AllowCustomText="false" > |
| </telerik:RadComboBox> |
| <telerik:RadComboBox ID="cbMonth" runat="server" Height="200px" Width="60px" |
| DropDownWidth="60px" |
| OnClientSelectedIndexChanged="cbMonth_SelectedIndexChanged" |
| OnClientTextChange="cb_OnClientTextChange" |
| CausesValidation="false" MarkFirstMatch="false" AllowCustomText="false" > |
| <Items> |
| <telerik:RadComboBoxItem Text="" Value="00" /> |
| </Items> |
| </telerik:RadComboBox> |
| <telerik:RadComboBox ID="cbDay" runat="server" Height="200px" Width="60px" |
| DropDownWidth="60px" HighlightTemplatedItems="true" |
| EnableLoadOnDemand="false" CausesValidation="false" |
| OnClientSelectedIndexChanged="cbDay_SelectedIndexChanged" |
| OnClientTextChange="cb_OnClientTextChange" |
| OnClientLoad="cbDay_Loaded" |
| MarkFirstMatch="false" AllowCustomText="false"> |
| <Items> |
| <telerik:RadComboBoxItem Text="" Value="00" /> |
| </Items> |
| </telerik:RadComboBox> |
| </div> |
Please advise on this situation.
Thank you