Hi,
How would I save the data inputted into a list into WebSQL, when using a foreach knockoutjs binding?
<table class='producttable'>
<tr>
<th>Name</th>
<th>Description</th>
<th>Price</th>
</tr>
<tbody data-bind="foreach: products">
<tr>
<td>
<input data-bind='value: name' />
</td>
<td><input data-bind='value: description' /></td>
<td><input data-bind='value: price' /> </td>
</tr>
</tbody>
</table>