Introduce an option for rendering the sub items in the Menu in columns layout by either:
- setting max number of items per row (fixed number of columns) and add as many rows as needed
- setting max number of items per column (fixed number of rows), which will add more columns if there are more items
I am just going to share a temporary solution for introducing multiple columns in the sub items:
<style>
.custom-menu ul{
display: block;
width: auto;
max-width: 330px;
overflow: auto;
padding: 0;
margin: 0;
list-style: none;
}
.custom-menu ul li{
width: 100px;
display: inline-block;
float: left;
}
Regards,
Konstantin Dikov
Progress Telerik