dash
dash copied to clipboard
[BUG] Filtering issue in dash table with numeric format
i just upgrade my libary to dash 2.13.0 dash-core-components 2.0.0 dash-html-components 2.0.0 dash-table 5.0.0
since dash 2.13.0 , i cannot used numeric filtering at dash_table.DataTable with expression ">" , "<" , ">=" , "<" with my numeric data format
from dash.dash_table.Format import (Format, Group)
Format().decimal_delimiter(',').group(True).group_delimiter('.')
but with dash 2.8.1 i can still filter it using this format
please help
dash_table.DataTable filter_options={'case':'insensitive'}
i think here is the issue, when i activated the case insensitive filter option,
even numeric will be considered as an text column so when i filtering '< 3',
the outcome will read the first numeric number and the result is 123 , 227
can you help to restrict numeric type from case:insensitive option or can you add which column can i set for a case sensitive or insensitive?
Same issue here.