For example, on my row:
```C#
[QuickFilter]
public string MyField { get; set; }
So, on my Grid.ts:
```typescript
protected getQuickFilters() : Serenity.QuickFilter<Serenity.Widget<any>, any>[] {
let filters = super.getQuickFilters();
let filter = Q.tryFirst(filters, (x) => x.field == fld.Id);
filter.remove(); // I wanna this!! for example, to using with condition
}
@brunobola I wanna remove quickfilter control dynamically, not a simple control.
@olaferlandsen dude just point some start point, please search the issues....
@brunobola is for GRID not for Dialog
@olaferlandsen I notice that and was just point you to how to override things, nevertheless, with just a little search and find this topics related....won't be big problem for you to achieve your goal I think.....
https://github.com/volkanceylan/Serenity/issues/2961
https://github.com/volkanceylan/Serenity/issues/342
https://github.com/volkanceylan/Serenity/issues/447
I resolve it with you help:
When set some variable/propertie/member:
let filters = super.getQuickFilters();
filters.splice(1,1);
If it don't wotk, try with:
this.quickFiltersDiv.children().eq(index).remove();
Most helpful comment
I resolve it with you help:
When set some variable/propertie/member:
If it don't wotk, try with: