navbar disappears after service call
In my app the navbar is visible when screen opens.
once a service is called and populates the page the navbar disappears
I tried using the code below as js asset, it didnt work for me
I tried "data-tap-toggle=false" in footer properties and this approach works great in browser and as web app but not on iphone from xcode
is there a clever way around this
I want the navbar and footer to remain at the botton of the device screen after service populates the page
this is the code that didnt work
$(document).on('taphold', '[data-role=page]', function(){
$('[data-position=fixed]').fixedtoolbar('toggle');
});
thx