i am adding data using following function
grid.onAddNewRow.subscribe(function (e,args) {
// code for adding data
});
but it is called immediately after adding data in first column. i want to call this function after adding data in whole row(all columns). is there any event or any other way to call this function after adding data in last column?