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
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