I am trying to find a property of the DropDownList that will set the actual height of the widget itself. I found the height property that appears to set the height of the dropdown portion of the control but I want to adjust how tall the widget itself is. Is this something that can be set?
3 Answers, 1 is accepted
0
Iliana Dyankova
Telerik team
answered on 06 Dec 2012, 02:30 PM
Hi Brian,
You can set the actual height of the DropDownList through using custom CSS. For example:
<style>
.k-dropdown .k-dropdown-wrap{
height: 47px;
}
</style>
I hope the suggested approach fits your requirements.
Regards,
Iliana Nikolova
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
What would be the best practice for a certain control?
.customCSS
.k-dropdown .k-dropdown-wrap
{
height: 40px;
}
<div id="kendoDropDownList" class="customCSS" />
Does not work.
Thank you
0
Iliana Dyankova
Telerik team
answered on 07 Nov 2013, 08:12 PM
Hi Alan,
The following CSS selector should help to achieve the desired outcome:
.customCSS.k-dropdown .k-dropdown-wrap{
height: 40px;
}
Regards,
Iliana Nikolova
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!