Styling 0:32 video
How to change the background color in alternating rows in grid controls
Learn how to change the background color in alternating rows in grid controls with SpreadsheetWeb. Follow focused steps, practical examples, and…
To change the background color in alternating rows in grid controls;
- Open Designer Interface,
- Go to the ‘Stylesheet’ module.
- Add a new stylesheet.
- Enter the CSS rule for changing the background color in alternating rows in grid controls.
- Save the stylesheet by clicking on the “Save” button.
tr.odd > td[class*="-grid-table-cell"] {background-color: lightsalmon;
}
tr.even > td[class*="grid-table-cell"]{background-color: springgreen;
}