Query handling in flex repeater

I have a named Query that returns the o/p in Dataset format with 19rows and 6 columns i need to use flex repeater to show each row value in repeater Instances. where i need to bind the Query, based on the understanding, if we want to use flex repeater we require two views - template and main view, in this case if we want to use query, where we need to bind the Query

The flex repeater needs its props.instances property configured which will contain the params to pass into the template view within lists of objects. There are a few ways to do it, but the most direct is to bind your query to this and transform the output if required to produce the list of objects (dicts). Make sure you set the output of the query to JSON

1 Like

Any reason you're not using a table ?