Hello,
I'm using "Batch editing".
https://paramquery.com/pro/demos/editing_batchI'm using "Remote Paging".
I'm entering multi-line data by copying from "Excel".
For This; The new line with the ".AddRow" function. It has to be at the bottom.
At the end of page 3 or at the end of page 1 it is not a problem for me to have a new line.
Note: If the records are single pages, no problem.
I tried these;
Go to the last page without opening new row in "addRow" function.
grid.goToPage({page:3});
var rowIndx = grid.addRow( { rowIndxPage: 40,rowData: rowData, checkEditable: true });
grid.goToPage({ rowIndx: rowIndx});
grid.editFirstCellInRow({ rowIndx: rowIndx });
I tried to show all the records on 1 page without opening a new row.
Result successful
grid.option('pageModel.rPP',999999)
//grid.refreshDataAndView();
var rowIndx = grid.addRow({rowData: rowData, checkEditable: true });
grid.goToPage({ rowIndx: rowIndx});
grid.editFirstCellInRow({ rowIndx: rowIndx });
But I want to ask if I can do it in any other way.
Thanks