Flex repeater(perspective)

Is there any way to make flex repeater instances with different height?

No, the height setting is applied to every instance. That being said, if you use auto, then you’re handing off the responsibilities to the view being rendered and so if one of the instances needs more room based on some sort of layout changes from passed-in-params, then that instance could grow taller. Note that every instance must be the same height though, so if one instance needs more room while using auto, then all instances will gain that extra space.

1 Like