I am using a Knockout sortable on a table, and it works great - but the input that is on the row can no longer be clicked into. I can tab to the inputs and they operate perfectly, but the sortable is blocking the clicks. Any idea to get around this? Thank you.
The part int he table I use it:
<tbody data-bind="template: { name: 'my-template', foreach: items }, kendoSortable: items"></tbody>
Template:
<script id="my-template" type="text/html">
<tr>
<td style="width: auto" data-bind="text: title"></td>
<td style="width: 250px">
<input style="width: 98%" data-bind="value: notes, event: { change: onNotesChanged }" />
</td>
</tr>
</script>
Let me know if I need to post more, thank you.