I need to get data from all rows in a B-panel list, though I can only by getData() from grid get the first 33 records:
this.grid = this.controller.GetGrid()
const dataset: any[] = this.grid.getData();
console.log('dataset.length: ', dataset.length) --> 33 records
Does anyone know how I can get the data from all rows, even those that are not showing if I do not scroll?