As it is said in the title, I want to pop all controllers from a child router in one go. What I am doing now is calling popToRoot(), setPopsLastView(true) and popCurrentController(). But this means the root controller calls onCreateView() right before I pop it and also the changehandler of the root controller is called. It's not visually appealing.
So I want a method that pops ALL controllers from a child router in one single step. Is this possible?