How to make a listview without icon on the right? I want to change apperance of my read-only and normal listviews in jQuery Mobile. I am compiling app with PhoneGap.
I read similar posts like: How to add icon/image to listitem of ListView, but couldn’t get my answer.
As mentioned in my comment, the lists with an icon on the right have a link.
You can create read-only lists which do not include linked content.
You can check the online doc for more information:
http://jquerymobile.com/demos/1.0/docs/lists/lists-readonly.html
Example of code:
If you want to keep the links, you just need to add
data-icon="false"to your<li>tags:Example of code:
Hope this helps