Styling 0:30 video

How to change the background color in grid controls

Learn how to change the background color in grid controls with SpreadsheetWeb. Follow focused steps, practical examples, and implementation guidance to…

To change background color 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 the grid control.
  • Save the stylesheet by clicking on the “Save” button.
CSS3 lines
th[class*="input-grid-header"] {
      background-color: cornsilk !important;
}