I have this sapui5 application with a button, which when pressed has the following function.
onWindowOpen: function(oEvent) {
window.open("http://www.google.com", "_blank", "toolbar=yes,scrollbars=yes,resizable=yes,top=100,left=500,width=800,height=400");
}
My question is, if it's possible to open some ui5 page in the window in this manner? Thanks :)
Yes, its possible. I locally ran two UI5 applications and I could open another UI5 application in a new tab from one UI5 application with window.open. However, context passing would be a challenge as you will need to associate your data with window object which is global.