3

I want to increase width of ag-grid filter with specific column enter image description here

I have tried to fix with css but its affecting with every column.

Thanks in Advance

Aviral
  • 43
  • 4

1 Answers1

0

Right click on filter input and click inspect. You will see an id generated, in my case the id of input is "ag-20-input". You can use this id to change width of specific column filter.

#ag-20-input{
    max-width: 2px !important;
}
Usama
  • 1,038
  • 9
  • 22