HI guys
is there a way to change a tables ROW colors to be in a different background color alternating between 2 colors?.
in other words - row 1’s background is grey, row 2 background white,
row 3 is then again grey, row 4 is white,
etc etc
Are you talking about the grid element? You have the “alternate background” option:
If you have your own container with items to repeat you can just bind the background color to an expression that checks the index:
The mod
operator is just %
, so that’s actually item.index % 2
thanks so much