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; }});