Jquery mobile listview + phonegap bug
iv got a listview inside my jquery mobile + phonegap app, like:" <li>test<ul><li>insidetest</li>
<li>insidetest2</li> ...
" . th开发者_运维知识库e problem is that if in the name of "test" has an space character " " or a special character "ç, í , á , _" it goes though an infinite load animation and didn't render to the list's nodes page. i would like to know what to do to fix it.
Can you provide us the jqm and phonegap version and the html used please?
I do a lot of listviews with data un jp, with latin american chars and russian and never have problem, maybe you need to refresh the listview with the method:
$('#mylistview_ID').listview("refresh");
精彩评论