Page 1 of 1

Item in Navbar remains selected after click

Posted: Fri Jan 04, 2013 12:02 pm
by Renjith V

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.


Item in Navbar remains selected after click

Posted: Fri Jan 04, 2013 12:33 pm
by Kateryna Grynko

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.


Item in Navbar remains selected after click

Posted: Fri Jan 04, 2013 9:01 pm
by Renjith V

Thank you, that clarifies it.


Item in Navbar remains selected after click

Posted: Sat Mar 02, 2013 12:12 am
by Moataz Abdellateef

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?


Item in Navbar remains selected after click

Posted: Mon Mar 04, 2013 8:25 am
by Kateryna Grynko

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.


Item in Navbar remains selected after click

Posted: Sat Feb 15, 2014 5:26 am
by Alex GG

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!


Item in Navbar remains selected after click

Posted: Sat Feb 15, 2014 5:38 am
by Alena Prykhodko

Hello, please check the solution http://stackoverflow.com/questions/11...


Item in Navbar remains selected after click

Posted: Sat Feb 15, 2014 6:34 am
by Alex GG

thanks, it works!
this is the code:

$(".ui-btn-active").removeClass('ui-btn-active');

in case someone else needed.