Hi Dojo,
after upgrading DM to the version 1.4.8, in my low-code app the elements of the grid have started rotating any time the trigger update. I have a grid with 12 elements, four columns and three rows and they rotate continuously. There is a way to fix the elements position in the grid using the element Id or whatever?
Thank you
Hi Marco, the trick here is to ensure a consistent order in your data across multiple sessions. One way to achieve this is to sort your data by adding a sort operator to the query. You can decide which column would be the best fit to sort on, but at least that will ensure the first, second, third... element will be represented by the first, second, third... cell in the grid when the data gets refetched by the trigger.
Thank you Gilles! That solves my problem.