Search code examples
tabulator

How to set default color for column?


Tabulator has builtin formatter color

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

something like:

columns: [
  { width: 50, color: "red" },
]

Solution

  • 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;
    }