Is there a way to refresh a single Kendo grid row without refreshing the whole datasource or using jQuery to set the value for each cell?
updateRecord(record) { const grid = $(this.el.nativeElement).data('kendoGrid'); const row = grid.select(); const dataItem = grid.dataItem(row); for (const property in record) { if (record.hasOwnProperty(property)) { dataItem.set(property, record[property]); } } }