Is it possible to set custom color for rows in a flex list depending on the data in it.I know how to define a custom itemrenderer and do it but I would likr to know whether there is any simple method because I don’t want more components in the list
Share
It is not possible to add custom colors to the itemRenderer that displays your data without modifying, or replacing, the itemRenderer.
The list based classes in Flex use itemRenderers to display data. If you create your own, then you are replacing the default itemRenderer. It will not create any more components in memory; it’ll just change what those components are.