How do I remove a row from a Kendo Grid
I have a very simple setup, a grid called #list with a datasource populated with records to display. I have a button on each row with an onClick event that calls this function: // Soft-Delete person var processURL = crudServiceBaseUrl + '?method=deletePerson'; function deletePerson(id){ if (confirm('#getResource("person.detail.confirmdel")#')) { $.ajax({ type: 'POST', url: processURL, data: { PERS_KY: id }, success: function (data){ var thingToDelete = "tr:eq("+id+")"; var grid = $("#list").data("kendoGrid"); grid.removeRow(thingToDelete); }, error: function (xhr, textStatus, errorThrown){