Crystal
Posts: 0
Joined: Mon Nov 25, 2013 8:49 am

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.

Maryna Brodina
Posts: 0
Joined: Thu Apr 05, 2012 7:27 am

How to adjust the phone resolution?

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

Return to “Issues”