Hi all,
I am trying to customize the layout according to client's brand manual. However, the html output does not help a lot.
Current output is as such:
[ Current output ]
// Main Menu level 1 starts here
<ul id="F0_..." kendo-menu ... class="k-widget k-menu ... k-menu-horizontal">
    <li class="k-item">
        <span class="navListLabel">Store Inventory</span>
    </li>
</ul>
// Main Menu level 2 starts here
<div class="k-animation-container" style="long lsit of properties inline...">
    <ul>
        <li>
            <a href="">
                <span>Sub item</span>
           </a>
       </li>
    </ul>
</div>
[ What I need ]
// Main Menu level 1 starts here
<ul id="F0_..." kendo-menu ... class="k-widget k-menu ... k-menu-horizontal">
    <li class="k-item">
        <span class="navListLabel">Store Inventory</span>
 
        // Main Menu level 2 starts here
        <div class="k-animation-container" style="long lsit of properties inline...">
            <ul>
                <li>
                    <a href="">
                        <span>Sub item</span>
                    </a>
                </li>
            </ul>
        </div>
 
    </li>
</ul>
How can I achieve that?
Much appreciated.
 
				 
		 
					