Drop down option menu using onsen UI

后端 未结 2 1329
执念已碎
执念已碎 2021-01-12 15:52

I want to develop drop down menu header as available in android navigation toolbar. I am using phonegap & onsen UI Framework to develop mobile application. I can able to

2条回答
  •  独厮守ぢ
    2021-01-12 16:19

    You could try using with an inside.

    Create the popover inside a template:

    
        
          Option 1
          ...
        
      
    
    

    You can show the popover using the following JavaScript code:

    ons.createPopover('popover.html').then(function(popover) {
      popover.show();
    });
    

    I've created an example that shows how you can use it as a dropdown menu: http://codepen.io/argelius/pen/zxGEza

提交回复
热议问题