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 )
Asked
Active
Viewed 843 times
1 Answers
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
-
This is not the solution. – S K R Mar 07 '23 at 13:43