Hide filter box for datetime column in DataTable

I have a DataTable with custom filtering (filter_action = ‘custom’) in a callback. This works fine.
However, I would like to filter a datetime column (“created”) with a DatePicker and not the filter box in the DataTable. Can I hide or disable the filter box for this specific column?

Thanks!

Regards, RubeL

Found a solution using style_filter_conditional:

style_filter_conditional=[
            {
                'if': {'column_id': c},
                'pointer-events': 'None'
            } for c in [col["id"] for col in table_cols if col['type'] == 'datetime']
        ]