I want to have a list view inside a collapsible-set and I want to bind the data to the list view using knockout.js. Please can anyone help me regarding this with a simple example. I want to bind data in place of Content 1, Content 2 and Content 3 of the below code.
<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>