Tabulator has builtin formatter color
Is there a way to set default column color (for all cells)?
something like:
columns: [
{ width: 50, color: "red" },
]
Tabulator has builtin formatter color
Is there a way to set default column color (for all cells)?
something like:
columns: [
{ width: 50, color: "red" },
]
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;
}
© 2022 - 2024 — McMap. All rights reserved.