Notice: The Monaca & Onsen UI Community Forum is shutting down.
For Onsen UI bug reports, feature requests and questions, please use the Onsen UI GitHub issues page. For help with Monaca, please contact Monaca Support Team.
Thank you to all our community for your contributions to the forum. We look forward to hearing from you in the new communication channels.
Simple popPage() question...
-
Hello,
I have page A, Page B and Page C.
On click of button in Page A, I pushPage B.
On click of button in Page B, I pushPage C.Page C has a entry form with a ons-button. On click of the button, I post to rest api to save the data into the DB and calling popPage() which works fine.
Now, I want to change color of the button in Page B so that the user knows there is a data.
I use JQuery. How I access that button on page B to change the color, please?
Thanks for your help!
-
Could you respond please?
-
After popping page C, refreshing the Page B is also fine.
Thanks!
-
@mmike Please remember the Onsen team is in Japan and a lot of the community members are all around the world in different time zones. On to your question, after the popPage call, just reference the button by ID and change the style.
-
Thanks munsterlander!
That’s is exactly what I am doing it does not work.
myNavigator.popPage(); $("#btn").css("color:black");
Once again thanks!
-
It has nothing to do with Onsen popPage()!
Incorrect jQuery CSS method syntax:
$("#btn").css("color:black");
Correct syntax:
$("#btn").css("color", "black");
or
$("#btn").css({"color" : "black"});
-
@jemel
Thanks Jamel!
That worked. Apart from changing the color of the button, I need to refresh this page so that I can display the entered from DB.
Question: After popPage(), Is it possible to refresh this page?
Thanks for your help!