Обычно в текущем значении мы получаем несколько параметров в виде массива, но не можем его отфильтровать.
this.params.onFloatingFilterChanged({ model: this.buildModel(this.currentValue) });
this.params.parentFilterInstance( (instance) => {
if (typeof this.currentValue === 'object') {
if (this.currentValue.length > 0) {
**instance.onFloatingFilterChanged('equals', this.currentValue);//this.currentValue=['enable','disable']**
} else {
instance.onFloatingFilterChanged('equals', '');
}
} else {
instance.onFloatingFilterChanged('equals', this.currentValue);
}
});