Ionic 2 - Navigate to tabs view and open certain tab

Hi,

I am trying to use tabs for kind of a breadcrumb and I have a submit form on the first tab. When i press submit i want to navigate to the next tab. How can I do this? Is there a way to pass the tabs index to the navCtrl.push()?

Thanks a lot in advance.

Cheers,
David

I already found the solution myself:
navCtrl.parent.select(tabindex); does the job.