Hello,
I`m trying to include custom based filtering in my Dash table, but when I include filter_action =‘native’, the table is not shown at all.
The piece of code I`m using is:
html.Div([
dash_table.DataTable(
id='table_results_received',
columns = [{'id':c, 'name':c} for c in received_released_data.columns ],
data='',
editable=True,
filter_action="native",
sort_action="native",
sort_mode="multi",
page_action="native",
page_current= 0,
page_size= 20,
)
]),
Could you please give me some indication of what might happen?