HELP!! Only no view seen

Hello, I have the init method in the UI with the definion of the navigator like:

Navigator navigator = new Navigator(this, this)

VerticalMenuView menu = new VerticalMenuView();
NoVerticalMenuView noMenu = new NoVerticalMenuView();

navigator.addView(“”, new TemplateView(noMenu, new LoginView()));
navigator.addView(“intro”, new TemplateView(menu, new IntroView()));
navigator.addView(“loginError”, new TemplateView(noMenu, new LoginErrorView()));
navigator.addView(“loadConfiguration”, new TemplateView(menu, new LoadConfigurationView()));
navigator.addView(“downloadConfiguration”, new TemplateView(menu, new DownloadConfigurationView()));
navigator.addView(“configuration”, new TemplateView(menu, new ConfigurationView()));

Why I see the menu only in the “configuration” view?

Thank you

Hi,
seems like you are sharing the same component instance (ie VerticalMenuView) between more other components.
A component could have only one parent

HTH
Marco