Page 2 of 2

How to adjust the phone resolution?

Posted: Thu Jan 16, 2014 2:20 am
by Crystal

Hello,
The Grid has only a row of column ,so I want to add background image of the row of column.


How to adjust the phone resolution?

Posted: Thu Jan 16, 2014 10:34 am
by Maryna Brodina

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