By default, all columns in my grid appear in the filter tool. How can I restrict to only allow specific columns to be available for users to filter the grid by?
Hi @Vibhor_Batra,
Thanks for posting!
You can prevent one or more of your columns from having the filter option shown by passing false
to the column definition property filter
â check out this section of the ag-grid docs here.
Caroline
That worked. Thank you.
Added filter = False to column configuration
gb.configure_column(âALLOCATIONâ, type=[ânumericColumnâ,ânumberColumnFilterâ,âcustomNumericFormatâ], precision=2, aggFunc=âsumâ, filter=False)