Unable to filter rows in my datatable

Hi, I am using datatable from dash_table_experiments but however I am unable to filter rows properly. I don’t see anything in the input box of filter as I type, but that column somehow gets filtered. Once I type something in the input filter box and once that column is filtered, I can’t go back using backspace. Here is a snippet of my code
‘’’
dt.DataTable(
# Initialise the rows
rows=[{}],
row_selectable=True,
filterable=True,
sortable=True,
selected_row_indices=[],
id=‘table2’
),
‘’’

What am I doing wrong here?

hmmm you might first try upgrading to dash_table instead of dash_table_experiments. They officially released it last month as a different package. Also don’t forget to update the other dependencies like dash itself which has gone through several updates recently.

Alright! Thanks for the reply!