How can i achieve the above table column calculation using knockout.js. I can implement the same using jquery, but as I'm beginner to knockout.js i don't know the implementation using knockout.js.
I don't want to generate the above mentioned table using Json, instead i will generate this table directly in HTML table itself. Here is the HTML code
<table>
<thead>
<tr>
<th>Price</th>
<th>Quantity</th>
<th>Amount</th>
</tr>
</thead>
<tbody>
<tr>
<td><input type="text"></td>
<td>2</td>
<td></td>
</tr>
<tr>
<td><input type="text"></td>
<td>1</td>
<td></td>
</tr>
<tr>
<td><input type="text"></td>
<td>2</td>
<td></td>
</tr>
<tr>
<td><input type="text"></td>
<td>100</td>
<td></td>
</tr>
</tbody>
Any Suggestions?