This is a migrated thread and some comments may be shown as answers.

RadComboBox and chrome

2 Answers 89 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Bogdan Cucosel
Top achievements
Rank 1
Bogdan Cucosel asked on 02 Jun 2010, 09:48 AM
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

2 Answers, 1 is accepted

Sort by
0
Kalina
Telerik team
answered on 07 Jun 2010, 06:44 PM
Hi Bogdan Cucosel,

I tried to reproduce the issue using the code snippet provided but without success – on our side RadComboBox controls look properly under Chrome.
Could you please paste here the full code of your page and provide us instructions how to reproduce the issue?
Thank you in advance.

Regards,
Kalina
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
Bogdan Cucosel
Top achievements
Rank 1
answered on 08 Jun 2010, 07:58 AM
Hello,

I gave up that code, replaced the comboboxes with textboxes :).
The issue seemed to be related to the fact that the control I provided was inside a table cell with some styling. Outside the table worked fine in Chrome too.

10x
Bogdan
Tags
General Discussions
Asked by
Bogdan Cucosel
Top achievements
Rank 1
Answers by
Kalina
Telerik team
Bogdan Cucosel
Top achievements
Rank 1
Share this question
or