How to adjust the phone resolution?
Hello,
The Grid has only a row of column ,so I want to add background image of the row of column.
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/
Hello,
The Grid has only a row of column ,so I want to add background image of the row of column.
Hello! If you need to set background for Grid cell you don't need to use image element or html. You can set background for cell using the following code on page Show event: prevar cell = $("[name=cellName]", $.mobile.activePage);
cell.css('background-image','url("https://dl.dropboxusercontent.com/u/134459352/fondoportadatam.jpg")');
cell.css('background-size','100% 100%');/prewhere cellName - cell name
If you need to expand cell on screen add these lines:precell.css('width', '100%') ;
cell.css('height', '100vh') ;/pre