cancel
Showing results for 
Search instead for 
Did you mean: 

Multiple views navigation in Fiori full screen application

Former Member
0 Kudos

Hi

I am trying to add additional pages to a Fiori full screen application which already contains a master page and details page. The application has been created in WebIDE using full screen application template.

I added an extra route in component.js, added a method to navigate to the third page and created new XML view and view controller. The navigation is not working as I expected. Am I doing something wrong or anything else needs to be done?

Thanks in advance.

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member210621
Participant
0 Kudos

Hi,

Mention any entity string (or view name if no data is passed to view) in pattern of routing config.

While navigating to view use:

this._oRouter.navTo("persleave", {

  from: "details",

  entity: "",          // pass entity string here when data is passed

  tab: null

  });

-Regards,

Ketan