Styling 0:51 video
How to change the font color in disabled cells in grid controls
Learn how to change the font color in disabled cells in grid controls with SpreadsheetWeb. Follow focused steps, practical examples, and implementation…
To change the font color in disabled cells in grid controls;
- Open Designer Interface,
- Go to the ‘Stylesheet’ module.
- Add a new stylesheet.
- Enter the CSS rule for changing the background color of disabled cells in grid controls.
- Save the stylesheet by clicking on the “Save” button.
td.cell-editability-disabled {
color: crimson !important;
}