Is it possible to highlight cells of an editable DataTable (DataTableReference) which have not been filled with content by a user e.g. via setting the cell background color to red. To highlight cells for a specifc value of e.g. 20
done with:
dash_table.DataTable(
id='table',
columns=[
{'name': 'id', 'id': 'column-id'},
{'name': 'name', 'id': 'column-name'},
],
data=[],
style_data_conditional=[
{
'if': {
'column_id': 'column-id',
'filter_query': '{column-id} eq 20',
},
'backgroundColor': 'red',
},
],
editable=True,
row_deletable=True,
)
However I could not found a suitable filter rule in DataTable Style ( Conditional Formatting - Highlighting Cells) and DataTable Filtering for “empty”.