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
Sorry, that is not supported. By default this is the "ACCENT" color as defined in your site configuration.
When we update at the site level it is impacting all other locations. We would like to change only for the selected grid.
Sorry, not supported.
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", "" )