thumbnails listview
thumbnails listview
I have a listview with thumbnails, and updated my code to cope with alpha 4 requirements on the anchor to cover all the contents of a list item, including the thumbnails. So, my code ended like this:
<li class="ui-li-has-thumb ui-btn ui-btn-icon-right ui-li ui-btn-up-c" data-theme="c">
<div class="ui-btn-inner ui-li">
<div class="ui-btn-text">
<a href="javascript:conectar('10482');" class="ui-link-inherit">
<img src="http://www.e-xis.com.br/ftpbahia/galeria/g/{40F5E5E2-CE47-49B0-8AE8-4E4195189C6E}_colo.jpg" class="ui-li-thumb">
<h4 class="ui-li-heading">Membro do TOB tem desconto em teatro</h4>
</a>
</div>
<span class="ui-icon ui-icon-arrow-r"></span>
</div>
</li>
So, it seems in synch with the example in the alpha 4 docs plus the injected divs.
But when I click on this list item, it doesn't work. It only works if I click on the image.
How can that be?
Cheers,