I'm using phongap 1.5, jquery 1.7.1, jquery mobile 1.1.0
in a multipage template I have this html:
<ul data-role="listview" id="listviewPreferiti"></ul>
when a button is tapped this js is executed (I prefere this approach to json and javascript expansion):
$("ul[id="listviewPreferiti"] li").remove();
$("#listviewPreferiti").append(res).listview("refresh");
or this code that works the same as before: $("#listviewPreferiti").html(res).listview("refresh");
res is a list of 'li' like this:
<li><a id="1" href="#">
<img src="http://www.pippo.com/images/02.jpg" class="ui-li-thumb"/>
<p>some text</p>
</a></li>
<li><a id="2" href="#">
<img src="http://www.pippo.com/images/03.jpg" class="ui-li-thumb"/>
<p>some other text</p>
</a></li>
the rendering usually work BUT: sometimes the images are not displayed until i tap the screen. I suppose that the reason is: the rendering process of jquery mobile finishes before the loading of the images (infact once the images are loaded, the problem does not occurr, reloading the same listview).
How can i force the rendering of the images? (i tryed using jquery .live, but no luck)(I'm using an android 4 phone for tests)
EDIT I've found this horrible patch to the problem after the append i call: refreshListView(listviewPreferiti,8); (i tryed $('img').trigger('refresh') dut doesn't work)
var refreshListView = function(listName, times){
if (times >0){
setTimeout(function() {
$("ul[id="+ listName +"] li img").each(function(index) {
this.style.borderBottom = "0px solid red";
});
},200);
refreshListView(listName, --times);
}
}