you should go through loop and append data to parent div..
Ex:
<div class ='ui-grid- c' id="parentDiv">
</div>
And your code;;
var Items = [];
for(var i=0;i< your_data_length:i++){
//Add your code here
Items.push("<div class='ui-block-b'><img src="your image source"></div>");
}
$('#perentDiv').append(Items.join(''));
$('#perentDiv').trigger('create');
if youcan post your data list , i can post more code ..
/*これは 2 列のグリッドに使用されます。主要な列グリッドが必要な場合は、 http: //jquerymobile.com/test/docs/content/content-grids.html で指定されているように div のクラスを変更するだけです。