how to open webpage in app itself (windows 8 app)
Hi John -- sorry was my mistake, I thought you want to open in a browser.
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
Hi John -- sorry was my mistake, I thought you want to open in a browser.
thanks lllya! its working as i wanted but the problem is its running in very small box like panel and webpage is of that size only
can we make it big like to display in full size but leaving some space for back button
Hello! Use the following code in panel:
code<iframe name="iframeName" width="100%" height="100%"></iframe>/code
and this code on Page ready:
code$("#metrocustomhtmlName").css("height", "100%");
window.open("http://appery.io/", "iframeName");/code
where metrocustomhtmlName - Panel name
nop not working and also one error in visual studio "Error in user defined event onready: ReferenceError: '$' is undefined"
Try this code codeWinJS.Utilities.id("metrocustomhtmlName").setStyle("height", "100%");/code instead code$("#metrocustomhtmlName").css("height", "100%");/code