plotly / dash-table

OBSOLETE: now part of https://github.com/plotly/dash
https://dash.plotly.com
MIT License
420 stars 72 forks source link

Filtery query to match null values #768

Closed chriddyp closed 4 years ago

chriddyp commented 4 years ago

Currently, we can replace null values with special text ('format': Format(nully='N/A')) however we can't apply conditional formatting to these values.

The current workaround is to either:

  1. Convert the null values to 'N/A' in the data and then filter off of that
  2. Convert the null values to '' in the data (however Format(nully='N/A') doesn't yet work with empty strings #763

It would be nice if there was a way to do this without needing to modify the underlying data.

chriddyp commented 4 years ago

NVM, this is supported with is blank or is nil