Search code examples
onsen-ui

How to implement two slide-menu on both sides of a page in Onsen-UI?


I'm new to Onsen-UI and would like to have slide-menus on both sides of my page. I intend to have multiple pages that will have this functionality and dont know how I can implement that. What is the best way to do that?


Solution

  • You have to nest two different ons-sliding-menu like this:

    <ons-sliding-menu
            main-page="page"
            menu-page="menu-left.html"
            side="left" ...>
    </ons-sliding-menu>
    
    <ons-template id="page">
        <ons-sliding-menu
                main-page="content.html"
                menu-page="menu-right.html"
                side="right" ...>
        </ons-sliding-menu>
    </ons-template>
    
    <ons-template id="menu-left.html"> ... </ons-template>
    <ons-template id="menu-right.html"> ... </ons-template>
    <ons-template id="content.html"> ... </ons-template>
    

    Working here: http://codepen.io/onsen/pen/qHeJx

    Hope it helps :)