リンクの指示に従って実装Split view model
しました:Jquery mobile + phone gap
http://www.youtube.com/watch?v=qnNyHPWRz-Y .
JQuery モバイルで iPadの分割ビューを実装するのは非常に簡単です
を実装するのに 2 ~ 3 分かかりますsplit view using jQuery mobile+ phone gap in iPad
。
<body>
<div data-role="page" data-theme="e" data-content-theme="d">
<div data-role="header">
JQuery Split View using link http://www.youtube.com/watch?v=qnNyHPWRz-Y
</div>
<div data-role="content">
<!--- Right side view------>
<div class="content-secondary">
<h3>Root View</h3>
<ul data-role="listview">
<li>Ashford Ridge Mine</li>
<li>Ashland Gold Mine</li>
<li>Brodford mine</li>
<li>Big Horn Mine</li>
<li>Elko pass</li>
<li>Emerad pine Gold</li>
</ul>
</div>
<!--- Right side view------>
<div class="content-primary">
<h3>Details View</h3>
<p>
Detail VIEWS goes here......
</p>
</div>
</div>
</div>
</body>
左側のルート ビューに select メソッドを実装する必要があります
なのでwhen we click a row in left side table it to display corresponding selected row's information and details in right side details view.
![ここに画像の説明を入力][1] しかしhow to implement did select method to the left side root view
にdisplay corresponding selected row's information and details in right side details view in the form of table views.
またはplease provide me a good tutorial for Split view using jQuery mobile phone gap in iPhone