cancel
Showing results for 
Search instead for 
Did you mean: 

AppBuilder - new window

MariusStoica
Active Participant
0 Kudos

Hi gurus,

I have an issue with the navigation within the app.

I have AppBuilder version 1.0.1252 installed and I've created in a project a bunch of pages. All I want now is to connect them, create a flow within the app. All of them would be called while taping on buttons, so I created the events for those buttons, but I didn't find a way to open one of the pages that I've created.

Can you give me some pointers?

What I've tried is to play with:

btn_onTap: function() {        
     var bus = sap.ui.getCore().getEventBus();        
     bus.publish("nav", "to", {            
          id : "appView--detailPageView"        
});    

},

With no success

Thanks,

Marius

Accepted Solutions (1)

Accepted Solutions (1)

MariusStoica
Active Participant
0 Kudos

Problem solved:

onButonPress: function(evt) {

         var bus = sap.ui.getCore().getEventBus();

         bus.publish("nav", "to", {

             id : "appView--newPage"

         });

Answers (0)