how to add search bar in ag grid dropdown

957 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 answers

1
Alexander Zbinden 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',
        ...
    }