Slowness in Dynamic Data Grid

0
 Hi Everyone  We have a requirement to display the data in a Grid but the number of columns are dynamic. Hence we used Dynamic Data Grid to populate Data. For every column and row we have DS microflows to load the data using OQL queries. Now the problem is, if the data set is small it is working fine but when the data set is large (say 1000+ records) it is taking more time to load and we want to reduce the time. Any pointers on the same   Regards Ajay
asked
1 answers
0

Hi, 

Try to avoid calling a DS microflow for every column or cell — instead, fetch all required data in one OQL query or Java action and populate the grid at once. You can also add pagination or lazy loading to limit records. This usually improves performance significantly when handling large datasets.

answered