Create vertical control group
Description
The following code shows how to create vertical control group.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.6.2.js'></script>
<script type="text/javascript"
src="http://code.jquery.com/mobile/1.0b2/jquery.mobile-1.0b2.js"></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/1.0b2/jquery.mobile-1.0b2.min.css">
</head><!-- ww w .j a va 2s .co m-->
<body>
<ul data-role='listview'>
<li>
<div data-role="controlgroup" data-type="vertical">
<a href="" data-role="button">Yes</a>
<a href="" data-role="button">No</a>
<a href="" data-role="button">Maybe</a>
</div>
</li>
</ul>
</body>
</html>