dash icon indicating copy to clipboard operation
dash copied to clipboard

[BUG] Filtering issue in dash table with numeric format

Open kyoshizzz opened this issue 2 years ago • 2 comments

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

kyoshizzz avatar Sep 14 '23 05:09 kyoshizzz

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?

kyoshizzz avatar Sep 14 '23 06:09 kyoshizzz

Same issue here.

Lxstr avatar Sep 27 '23 11:09 Lxstr