Loving the split pane layout in Ionic however I’m stuck on how to get a sub nav link to go to the root nav. Here is an example of the side pane navigation:
Split Pane Messages Nav:
Messages (on click go’s to messages sub nav in split pane ion menu)
Split Pane Messages Sub Nav:
This is a message (on click go’s to ion nav root on the right side)
This is another message (on click go’s to ion nav root on the right side)
<ion-split-pane>
<ion-menu [content]="content">
<ion-nav [root]="sideRoot"></ion-nav>
</ion-menu>
<ion-nav [root]="root" main #content></ion-nav>
</ion-split-pane>
I’ve looked all over and have not found a solution yet. Is this even possible?
Thanks