buttons in list?
buttons in list?
Hello,
is it some how possible to have buttons in listview using jquery mobile?
I want to acheve to have controls for list view. I tested following code, but it is badly broken...
- <ul data-role="listview" data-inset="true">
- <li data-role="list-divider">Heading</li>
- <li>object</li>
- <li>
- <div data-role="controlgroup" data-type="horizontal" >
- <a href="index.html" data-role="button" data-icon="arrow-u" data-iconpos="notext">Up</a>
- <a href="index.html" data-role="button" data-icon="arrow-d" data-iconpos="notext">Down</a>
- <a href="index.html" data-role="button" data-icon="delete" data-iconpos="notext">Delete</a>
- </div>
- </li>
- </ul>