If I read the documentation correctly, I understand that nested lists were removed from JQM 1.3.1, which means I can't use a list format such as this:
<ul data-role="listview">
<li></li>
<li></li>
<li>
<ul>
<li></li>
<li></li>
<li></li>
<ul>
</li>
</ul>
I wasn't sure what the proper way to do nested lists was now, so I did this:
<ul data-role="listview"><li></li></ul>
<ul data-role="listview"><li></li></ul>
<ul data-role="listview"><li></li></ul>
<ul data-role="listview" class="submenu">
<li></li>
<li></li>
<li></li>
</ul>
So technically each list item is just a listview with a single list item and any submenus are normal listview lists.
Is this valid? I mean, it works, just wondering if there was a better way.