Is there a way to dynamically change which fields are available to Angular-QueryBuilder?
I've tried:
fields
property of my QueryBuilderConfig
.
ngIf
and ChangeDetectorRef
.
My issue was my field objects. They didn't have value
properties, so Angular-QueryBuilder
was creating value
properties whose values were auto-incrementing integer IDs.
Since I was filtering from a source array without deep-cloning, value
was also getting set on the objects in the source array. Then the indices would be wrong when items were removed after filtering.