Hi Team,
Can you direct me to an example or documentation on getting filtered column name and filter text value in (onFilter)=”Filter($event) event of angular 2/4 , below documentation just shows an empty method. I couldn’t find the variable names to fetch column name and value from filter.
I need to do server-side filtering with this,
Appreciate your help.
import { Component } from “@angular/core”;
@Component({
selector: “app-root”,
template: `
<jqxTreeGrid #myTreeGrid(onFilter)=”Filter($event)”
[width]=”850″ [source]=”dataAdapter” [columns]=”columns”>
</jqxTreeGrid>
`
})
export class AppComponent {
Filter(event: any): void
{
// Do Something
}
Thanks
Ritesh