I'm using knockout with and foreach for binding the template and properties. Now for binding a new page i'm using something like this inside my main page:
<!-- ko template: {name: 'lib-dlp/views/share.htm' } --><!-- /ko -->
share.htm has:
<div>
<a href="" class="number_reviews"> (9 reviews)</a>
</div>
Now if i need to dynamically set number of reviews how should i do it. Also what's the best way to use it in knockout 2.0?