Refresh a single Kendo grid row

How do you define the row that you want to update? I’m going to assume that is the row that you have selected, and the name of the column being updated is symbol. // Get a reference to the grid var grid = $(“#my_grid”).data(“kendoGrid”); // Access the row that is selected var select = grid.select(); … Read more

tech