I have kendo menu( @(Html.Kendo().Menu()) in my web page.When the user reduce the size of web browser user cannot see all the menu items.Can i add scrolling for this menu?
how to add scrolling for kendo menu?
783 Views Asked by Rojish Varughese At
3
There are 3 best solutions below
0

You can use this code to create kendomenu
$("#menu").kendoMenu({
scrollable: {
distance: 20
}
});
For further information :
https://docs.telerik.com/kendo-ui/api/javascript/ui/menu/configuration/scrollable
No, the Kendo UI Menu doesn't support automatic scrolling.