Hi Everyone,
I very new into using Knockout JS.. Just recently I stumbled on using the Knockout js template.
My question is, is it possible to set dynamic templating in knockout.
Please see scenario belo..
<!--
EXAMPLE NUMBER 1.
Number of li inside ul is 2.
-->
<div>
<ul>
<li>
</li>
<li>
</li>
</ul>
<ul>
<li>
</li>
<li>
</li>
</ul>
</div>
<!--
EXAMPLE NUMBER 2.
Number of li inside ul is 3.
-->
<div>
<ul>
<li>
</li>
<li>
</li>
<li>
</li>
</ul>
<ul>
<li>
</li>
<li>
</li>
<li>
</li>
</ul>
</div>
<!--
The number of LI inside UL is dynamically set, it could be 2 or 3 or 4 etc etc..
-->
Thanks
John