Nest listview
Description
The following code shows how to nest listview.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.5.2.js'></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.css">
<script type='text/javascript'
src="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.js"></script>
</head><!-- ww w.j av a 2s . com-->
<body>
<div data-role="page">
<ul data-role="listview">
<li>Item 1</li>
<li>Item 2
<div>
<ol data-role="listview" data-inset="true">
<li><p>Embedded item 1</p></li>
<li><p>Embedded item 2</p></li>
</ol>
</div>
</li>
</ul>
</div>
</body>
</html>