
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
0
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
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
Hello Seshaadhree,
In order to achieve the proper alignment, I would suggest you use the following css style rule:
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
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