Issue with sorting order of images

0
So i have a data grid that works just fine, and next to it i have a data view which is listening to the data grid, and this data view has an image viewer. I would like to get it to where, when i click the name of one of the columns in the data grid to sort the grid according to that attribute, the images from the data view associated to the objects in the data grid to also sort themselves. and i just havent been able to figure out a way to get this to work..
asked
1 answers
0

You can try using Microflow as a data source for your template grid, and use the list operations to sort your list based on an attribute from the dataview.

Your datasource microflow will have one parameter (the same object in your dataview), and you can retrieve by association the list and then use sort option in the list operation activity. You would have to figure out a way to determine the sort order of your list based on the object you have.

answered