Filter Dash Datatable using mutiple inputs in the same column

Hi -

I’m new to dash. I’m trying to figure out a way to filter a column based on multiple inputs. I’m using the following code. Not sure what i need to add.

dash_table.DataTable(id='datatable-interactivity',
    columns=[{"name": i, "id": i, "selectable": True} for i in df.columns],
    data=df.to_dict('records'),
    filter_action="native",
    sort_action="native",
    sort_mode="multi",
    column_selectable="multi",
    row_selectable=True,
    selected_columns=[],
    selected_rows=[],
    page_action="native",
    page_current= 0,
    page_size= 10,
    export_format='xlsx',
    export_headers='display',
    merge_duplicate_headers=True

Thanks !