Hello,
I tried to find information on Dropdown here: Class DropDownBase<T>
But I don't find it anywhere how to change the number of items that are dropped when you open the dropdown.
Is this possible?
Best regards
Hello,
I tried to find information on Dropdown here: Class DropDownBase<T>
But I don't find it anywhere how to change the number of items that are dropped when you open the dropdown.
Is this possible?
Best regards
Hi @Ricardo_Silva,
You haven't found this as it isn't supported as a property. RadzenDropDown will render all items. If you want to show more you can set the popup height via the PopupStyle attribute:
<RadzenDropDown PopupStyle="height: 400px" ...>
Hello,
try this
height: fit-content; max-height: 400px;
It works!
Thank you!