The event handlers for swiping aren't working too well for me. Swipeleft works fine, swipe only registers right-to-left, and swiperight doesn't work at all.
I'm using an iPhone 3G, and I'm testing with this code:
I would like to use the navbar or ui-grid style buttons (evenly spaced horizontally) in a list-divider element to act as a filter for the list contents.
But when you embed either in a list, things don't quite work out. If you put the navbar div in an li, it turns it into a single blank button (similar result if you toss the div between two li's). When you put more than one button or link in an li, jQuery mobile turns it into a split button list (the type with a button link on the left and an arrow link on the right). Here's an example list with a comment where the above would go:
<ul data-role="listview" data-inset="true" data-theme="c" data-dividertheme="c"> <li data-role="list-divider"> List Title </li> <li data-role="list-divider"> <!-- filters go here --> </li> <li> <a href="#list1">list contents</a> <a href="#list2">list contents</a> </li> </ul>