Styling 0:51 video
How to change the font color in disabled cells in grid controls
One focused task, a quick video, and concise steps you can scan immediately.
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;
}
