折りたたみ可能なセット内にリスト ビューが必要で、 knockout.jsを使用してデータをリスト ビューにバインドしたいと考えています。簡単な例で、これに関して誰でも私を助けてください。以下のコードのContent 1、Content 2、Content 3の代わりにデータをバインドしたいと思います。
<div data-role="collapsible-set" data-collapsed="false" data-icon="" data-expanded-icon="carat-u" data-collapsed-icon="carat-d" data-iconpos="right">
<div data-role="collapsible">
<h3>Collapsible 1</h3>
<div data-role="listview">
<p>Content 1</p>
</div>
</div>
<div data-role="collapsible">
<h3>Collapsible 2</h3>
<div data-role="listview">
<p>Content 2</p>
</div>
</div>
<div data-role="collapsible">
<h3>Collapsible 3</h3>
<div data-role="listview">
<p>Content 3</p>
</div>
</div>
</div>