how to add scrolling for kendo menu?

783 Views Asked by At

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?

3

There are 3 best solutions below

0
On

No, the Kendo UI Menu doesn't support automatic scrolling.

0
On

They menu will stack l->r t->b if placed in a element that sizes.

0
On

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