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

ComboBox -multiple Column -checkBox Design change with FireFox Browser

4 Answers 132 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
seshaadhree
Top achievements
Rank 1
seshaadhree asked on 08 Oct 2015, 10:12 AM

Hi Telerik Team

I am getting the combo Box Design different in Chrome and Firefox and i haven't tried with other browsers  Check the ​attached image for clear idea.

Actually the design come perfect in chrome and  as coming to Firefox the text is displayed in next line.

Please help to solve this .

Thank You in Advance .

4 Answers, 1 is accepted

Sort by
0
Ivan Danchev
Telerik team
answered on 09 Oct 2015, 03:22 PM
Hello,

Please, isolate the ComboBox into a sample page demonstrating the issue and post it. This will give us an idea of your configuration and we will be able to test it in Chrome and Firefox and analyze the control's behavior. In case you are applying custom CSS in your project and it is needed in order to reproduce the problem, please post it as well.  

Regards,
Ivan Danchev
Telerik
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 Feedback Portal and vote to affect the priority of the items
0
seshaadhree
Top achievements
Rank 1
answered on 12 Oct 2015, 03:47 AM

Hi

here the code for the combo box. and no Css applied .

 

<telerik:RadComboBox ID="rcDrawingReference" Width="350" runat="server" Filter="Contains" CheckBoxes="true"   AllowCustomText="false"  AutoPostBack="true"  NoWrap="true"  EmptyMessage="Select" CausesValidation="false" IsCaseSensitive="false">
                                              <HeaderTemplate>
                                                  <table>
                                                      <thead>
                                                          <tr>
                                                              <td>   </td>
                                                              <td style="width: 150px; font-weight: bold;">Quotation Code</td>
                                                              <td style="font-weight: bold;">Drawing Reference</td>
                                                          </tr>
                                                      </thead>
                                                  </table>
                                              </HeaderTemplate>
                                              <ItemTemplate>
                                                  <span style="display: inline-block; vertical-align: middle;">
                                                      <table>
  
                                                          <tr>
                                                              <td style="width: 150px;"><%# DataBinder.Eval(Container.DataItem, "QuotationCode")%>
                                                              </td>
                                                              <td><%# DataBinder.Eval(Container.DataItem, "DrawingReference")%>
                                                              </td>
                                                          </tr>
                                                      </table>
                                                  </span>
                                              </ItemTemplate>
                                          </telerik:RadComboBox>

Regards

Seshaadhree S

0
Nencho
Telerik team
answered on 14 Oct 2015, 01:33 PM
Hello Seshaadhree,

In order to achieve the proper alignment, I would suggest you use the following css style rule:

<style type="text/css">
        .RadComboBoxDropDown label {
            float: left;
        }
    </style>

In addition, please note that the CheckBoxes feature is not supported along with the Filtering functionality. This is described in our help article below:

http://docs.telerik.com/devtools/aspnet-ajax/controls/combobox/functionality/checkbox-support

Regards,
Nencho
Telerik
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 Feedback Portal and vote to affect the priority of the items
0
seshaadhree
Top achievements
Rank 1
answered on 26 Oct 2015, 03:30 AM

Hello  Nencho 

Thank you 

Working Well !

Regards 

Seshaadhree S

Tags
ComboBox
Asked by
seshaadhree
Top achievements
Rank 1
Answers by
Ivan Danchev
Telerik team
seshaadhree
Top achievements
Rank 1
Nencho
Telerik team
Share this question
or