Hello,
is there any syntax for setting the expression for the transparency of the backcolor in the detail band?
I tried
modify( " datawindow.detail.Transparency.expression = ' if( mod( getrow(), 2 ) = 0, 100, 50 ) ' " )
also tried
modify( " datawindow.detail.Transparency = ' if( mod( getrow(), 2 ) = 0, 100, 50 ) ' " )
but nothing works.
I just want to have alternating background colors when displaying multiple rows in a grid datawindow.
Any idea?