This question is locked. New answers and comments are not allowed.
Please can you provide me a full example on how to implement the updateRow method in order to update a specific row. I am not finding a full one in the demos or in the documentation.
This is my code:
var grid = $(GridId).data('tGrid');var row = $(GridId + " .t-grid-edit-row");grid.updateRow(row);
in the grid configuration i am setting also the ajax databinding action:
.DataBinding(dataBinding =>
{
dataBinding.Ajax()
.Update("_SaveAjaxEditing", "Controller");
})
The UpdateRow Method is not sending any request to the server.
I want a sample of code including the controller code also.
Thank you