Hello everyone!
I need to display 5000 rows of editable rows in the grid - it’s about 2mb of data. First thing I have thought of is to fetch data from database with batches - to set a start index and a batch size and pass it to query entity expression, and then provide that result data subset to editable grid with implemented paging option (clicking back and next will trigger an update to a start index as well as a new batch to be fetched from database)
And I’m facing a problem finding an approach to update that data in the database after editing on the form when switching pages. Most probable storing 5k items in a local variable along with other data will cause memory issues while manipulating it for example
Is there any approach to achieve a desired goal?
Discussion posts and replies are publicly visible
Please don't do that. This is what record actions are made for. Just add a record action field to the records list. Then a user can click each item just from that list.
But maybe you can push back this "requirement" and think about a more process style approach.