I have a Kendo web grid combined with knockout. The source of my Grid comes from the nested observable array. The last column of the grid contains a button to remove the row. How can I do the remove?
<div data-bind="foreach: items">
<h5 style="color:red" data-bind="text:name"></h5>
<div id="selectedServices"
data-bind='kendoGrid: {
selectable: true,
data: sample,
columns: [
{ field: "id", title: "id"},
{ field: "name", title: "name"},
{ command:[{text: "x", className: "btnRemove" }]}
]}'
data-role="grid"></div>
<div>