I want to increase the width of quickfilter dynamically to content length better or fixed length.

Any solution please.
I tried using CSS but did not succeed.
Thank you
protected getQuickFilters() {
var flt = super.getQuickFilters();
var supplier = Q.tryFirst(flt, f => f.field == ProductRow.Fields.SupplierID);
supplier.cssClass = 'supplier-filter';
return flt;
}
.s-Northwind-ProductGrid {
.supplier-filter {
.select2-container {
width:300px !important;
}
}
}
@promiseap2014
thank you very much
Most helpful comment