Hi,
I have a read only grid with below parameters. Now when we select the rows those are appearing with a default color.
How and where I can customize the color which I want. Is there any parameter for doing this?
selectable: true, selectionStyle: "ROW_HIGHLIGHT", selectionValue: local!selection, selectionSaveInto: local!selection,
Discussion posts and replies are publicly visible
Hello swapnar6405
If you can use the selectionStyle as "CHECKBOX", may be you can play around with the background color parameter of your grid columns and achieve what you are looking for.
but you will have to write the logic in all the grid columns.
backgroundColor: if( contains(tointeger(local!selection),fv!identifier), "#FFFF00", "" )