Reputation: 351
I got dropdown in Kendo. I use OptionLabel, but after using this my values are moving beyond the dropdown:
DropDown code:
Now how my values are moving beyond the dropdown
It's better look when I mouseover this value:
Anyway it's really looking bad. After remove OptionLabel everything is fine:
Is here any possibility to remove this issue with optionLabel? I need it, because null is also correct value to choose
Upvotes: 1
Views: 47
Reputation: 11
Give height to your dropdown that can help you to make it more beautiful look
Refer below code for giving height to kendo dropdown
@(Html.Kendo().DropDownList()
.Height(500)
)
Upvotes: 1