0

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 )

user2240097
  • 311
  • 3
  • 11

1 Answers1

0

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',
        ...
    }
Alexander Zbinden
  • 2,315
  • 1
  • 17
  • 21