5 Answers, 1 is accepted
0
Hi Adrien,
You can apply the following custom CSS rules in order to achieve the desired appearance:
I hope that the above helps you.
Regards,
Veselin Tsvetanov
Telerik
You can apply the following custom CSS rules in order to achieve the desired appearance:
.RadComboBoxDropDown .rcbItem,
.RadComboBoxDropDown .rcbHovered,
.RadComboBoxDropDown .rcbDisabled,
.RadComboBoxDropDown .rcbLoading,
.RadComboBoxDropDown .rcbCheckAllItems,
.RadComboBoxDropDown .rcbCheckAllItemsHovered {
overflow
:
hidden
;
white-space
:
nowrap
;
text-
overflow
: ellipsis;
}
I hope that the above helps you.
Regards,
Veselin Tsvetanov
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
Adrien
Top achievements
Rank 1
answered on 24 Feb 2016, 11:18 AM
Nice, It's perfect :)
0
Adrien
Top achievements
Rank 1
answered on 25 Feb 2016, 12:47 PM
It's possible to have the same concept for RadAutoCompleteBox?
0
Hello Adrien,
You could use the same approach for RadAutoCompleteBox:
Regards,
Veselin Tsvetanov
Telerik
You could use the same approach for RadAutoCompleteBox:
.RadAutoCompleteBoxPopup .racItem {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
Regards,
Veselin Tsvetanov
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
Adrien
Top achievements
Rank 1
answered on 26 Feb 2016, 02:36 PM
Thanks Again :)