6

Tabulator has builtin formatter color

Is there a way to set default column color (for all cells)?

something like:

columns: [
  { width: 50, color: "red" },
]
Eugen Konkov
  • 22,193
  • 17
  • 108
  • 158

1 Answers1

7

There is no default way to do that built in to the formatter, but you could just use simple CSS to set the background color of cells in a column with a given field name

.tabulator .tabulator-row .tabulator-cell[tabulator-field="fieldname"]{
    background-color:red;
}
Oli Folkerd
  • 7,510
  • 1
  • 22
  • 46