how to add search bar in ag grid dropdown

996 Views Asked by At

without a search bar, I am facing the issue it taking more time to search the required field from the dropdown please tell me how to add a search bar in the ag-grid dropdown (angular )

1

There are 1 best solutions below

1
On

You can define per column what type of filter you want to use - in your case you'll want to use 'agTextColumnFilter':

columnDefs: [
    {
        field: 'yourfield',
        filter: 'agTextColumnFilter',
        ...
    }