Row color change -Customise

0
How to change row color in a grid?
asked
4 answers
7

Hi Anuvind,

If you wants to change the color based on condition then you can use Grid cell styler widget to change a color in grid.

https://marketplace.mendix.com/link/component/106254

Or you can change the color using css.

 

 

answered
3

Hi ANUVIND,

Try to change the row color using Grid Cell Styler

https://marketplace.mendix.com/link/component/106254

Hope it helps!!!

answered
3

Hi,

You can try the css code it will work.

Regards,

Rasik.N

answered
1

You can update CSS like below. This will update color in alternate rows in grid.

 

tbody tr:nth-child(odd) {

background-color: #00000;

}

answered