Hello Support team,
When i tried to edit column from last row it will delete the first row from grid.
For ex.
This is my grid
row-1 col-1 col-2 col-3(resulted col)
row-2 col-1 col-2 col-3(resulted col)
now if i try to update row-2 col-1 or col-2 it will delete my first row.
resulted
row-2 col-1 col-2 col-3(resulted col)
i also apply formula on grid like col-3 = col-1 * col-2;
code :
formulas: [
["col-3(result)", function(rd) {
console.log(rd);
return rd.col-1(val) * rd.col-2(val);
}]
]
And please find attached image file for reference.