@obinnae wrote:
I have an Ionic app with 4 tabs (T1, T2, T3, T4). Each tab has a list (tab T1 has list L1, T2 has L2, etc), and each list item points to a details page - so LI items point to L1D1, L1D2, etc, and L2 items point to L2D1, L2D2, etc. The idea is that each tab represents a different stage of processing an item, with T4 being the completed stage.
When I’m in a detail page of list on a tab, how can I jump to a detail page of a list in another tab? For instance, when item L1D1 is processed, I want a button on it to link straight to L2D1 (its detailed page on the next tab). So far, I’ve tried
this.app.getRootNav().getActiveChildNav().select(1); this.navctrl.setRoot(L2D1);It works fine, but T2 isn’t selected.
Thanks.
Posts: 2
Participants: 2