Item in Navbar remains selected after click
I added a navbar, but once I click it, it remains with the selected blue colour like it is selected always. How to prevent that.
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
I added a navbar, but once I click it, it remains with the selected blue colour like it is selected always. How to prevent that.
When you click a navbar item it becomes selected and will be selected until you select other navbar item. Navbar is designed to navigate the application and it shows your current point.
Thank you, that clarifies it.
To navigate from one page to the other, we end up putting the navbar on each page, and when the button remains clicked, it points to the wrong page. Is there any other way to navigate from one page to the other without copying the navbar over on each page?
Hi,
If you want components to duplicate without copying you can create Screen Template. All the pages created from Template will have the same components inherited from Template.
Hello, I ́m using a navbar item to open new panel...but after closing the panel, it remains active...
How can I deactivate it after that?
thanks!
Hello, please check the solution http://stackoverflow.com/questions/11...
thanks, it works!
this is the code:
$(".ui-btn-active").removeClass('ui-btn-active');
in case someone else needed.