Increase width of ag-grid filter with specific column

1k Views Asked by At

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

1

There are 1 best solutions below

0
On

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;
}