I have a tab that i assign 2 different pages two depending on some user action, however if i dynamically change the root page of a tab and select it, it does select the right tab but the content is not refreshed with the new page, i have to physically click the tab button AGAIN in order for it to update the content.
It seems i need to force a “click” event of a tab
here is my code
var homeTab = navCtrl.parent.getByIndex(0);
homeTab.root = HomePlacePage;
navCtrl.parent.select(0);