Hi, I've a context menu with a lot of items (a very long list). Is it possible to set a maximum height of a menu? So, if the items number is too large to make them visibile into the fixed height, a scrollbar appears.
Thank you Davide
Unfortunately, an automatic scrollbar not supported at the moment. The only solution would be to split the menu into several segments using submenus.
Thank you for your answer. I've found a my solution putting the following code into css file:
.menu_default_main {position: absolute; top: 0px; left: 450px; overflow: auto !important; z-index: 11; max-height: 300px;}
The result is good!
Great, thanks for posting your solution!