Hi,I am using record data ( a!recordData() ) in "data" parameter of the read only grid and I am not able to make the paging dynamic ( should fetch the data/rows from the Record according to the batch size not the whole data), because of this the grid taking too much time to change the paging from one batch to another ( here in the below code pageSize: 10 ).
Expected Outcome: Data should be fetched according to the batch size from the record not the whole data and User Filters must also work with the dynamic paging.Thank You.
Discussion posts and replies are publicly visible
As a! recordData does not directly provide a parameter for paging, I think that this is done automatically when used inside a grid. Just make sure to pass a value to "pageSize".
Hi Stefan Helzle,Thank you for your response!The record data sync is disabled and as I said pageSize was 10 then still grid taking too much time to change the paging.
Record sync does not change this behaviour. You will need to find out why that query takes too long. I recommend to write a test expression using a!queryRecordType() and test this.
ok Stefan Helzle,Let me try it out, I hope it will work.Thank You.