i am pushing data in to filters in specific events, after adding filters, last control(textbox or editor where values is entred) is unreachable,not able to type any values.
<kendo-filter [filters]="filters" (valueChange)="onFilterChange($event)">
</kendo-filter>
onnddrop(event:any){
if(event.currentTarget.id === 'drop_Target'){
this.filters.push({
field: this.draggeddData.fieldId,
title: this.draggeddData.fieldName,
editor: "string",
operators: ["neq", "eq", "contains"]
});
this.filters = [...this.filters];
}
}
Please look in to the issues.