Hello.
I checked the abnormal operation of the deleteRow function.
The data I am testing is a list of 5 pages in total.
DeleteRow works normally on page 1 and 2.
However, it works abnormally on pages 3, 4, and 5.
The phenomenon is not deleting the selected row, but deleting the first row on the current page unconditionally.
The code I used is as follows.
var rowList = grid.Checkbox("state").getCheckedNodes().map(function (rowDataObj) {
var rowIndxObj = grid.getRowIndx({ rowData: rowDataObj });
return { rowIndx: rowIndxObj.rowIndx };
});
console.log(rowList);
grid.deleteRow({ rowList: rowList });
The rowIndx stamped on the console is displayed correctly.
However, the first row is deleted unconditionally.
Please help me.