Skip to Content
0
Jul 28, 2016 at 11:01 AM

Is it possible to use browser inside the page view..?

26 Views

Hi Experts,

I'm trying to implement inside the sap.m.page use the web browser is that possible. Please suggest some idea here sample code what i tried it goes to browser directly but i want inside the view the browser will open.

Sample Code:

var page = new sap.m.Page({ content: [

new sap.m.Button({

text : "Click",

press : function() {

sap.m.URLHelper.redirect("http://www.google.com");

}

})

]

}); return page; }});