Hi there,
in my dashboard I am including a dataTable with multiple dropdown to filter the data. I got the following error when I tried select more than 1 filter:
"Maximum call stack size exceeded
*(This error originated from the built-in JavaScript code that runs Dash apps. Click to see the full stack trace or open your browser’s console.)"
Intially the table was into a html.Div. I succeeded to fix this error to replace the Div with a dbc.Container.
The error represented when I set to the dbc.Container the property “Fluid=True” (so I removed by now)
Does someone encounter the same issue? maybe there is another thread already to point out?
OR does someone knows why the bootstrap container (w/o Fluid True) works and Div no?
My concern is that by now I succeeded to fix by chance the error but w/o understanding it could come out at any time again
Super thanks for any suggestion!
FYI these are some of the packages version I am usign:
dash==2.6.1
dash-bootstrap-components==1.2.1
dash-bootstrap-templates==1.0.6
dash-core-components==2.0.0
dash-html-components==2.0.0
dash-table==5.0.0
the main file is called main_prjOverview.py. this code is working now BUT if at line 439 I add fluid=True then I incur the max stack size error…
I cannot undestand what create the recursion … Investigation ongoing!!
Filtering DataTable varieties of ways include select(String) method, which selects the required row or column and then based on that applies the filter. Filtering can be done using Select, Where, AND, OR, NOT logical operator and on top of it applying the value also there.