How you do bind a value to an input when using a responsive columns template? The value wont be saved from the input when trying to save. E.G: Row is added, I edit the value, but when I save, it goes back to 0.
columns.Template("#=resColTemplate(data)#").Title("Items").Media("(max-width: 475px)");
<script id="responsive-column-template" type="text/x-kendo-template">
<strong>Amount</strong>
<p class="col-template-val">
<input class="numeric" data-bind="#: Amount #" value="#: Amount#" required />
</p>
</script>