Node-red-dashboard-2-table-tabulator help

Hello,

I search to make some changes in the appearence of the ui-tabulator table I work with. As you can see below a get filters in some columns of my table. This message is comming from the table configuration "headerFilterPlaceholder": "Filter..." .

However, I would like the border that appears when you enter a filter value to be visible at all times. Or, visible as long as the filter is applied to a dedicated column. Could someone tell me how to achieve this?

Regards

Jean-Rem

It's a tabulator behavior, transparent to the node.
You can add CSS (e.g. 'border') which overrides the built-in tabulator class tabulator-header-filter.

.tabulator-header-filter {
  border: 1px solid blue;
}

1 Like