Posted 17 November 2018, 11:09 am EST
I am using the wijmo.react modules. I imported the grid using “import { FlexGrid } from ‘wijmo/wijmo.react.grid’” and the filter using “import * as wjFilter from ‘wijmo/wijmo.react.grid.filter’”.
I then instantiated in code the filter: this.filter = new wjFilter.FlexGridFilter(this.grid)
The error occurs when I try to attach a handler: this.filter.filterChanged.addHandler( (s, e) => { … }
The error message is: Uncaught TypeError: Cannot read property ‘addHandler’ of undefined
This error does NOT happen with I use the “wijmo.grid.filter”. There isn’t much depth in the wijmo React documentation. Can anyone point out what I am doing wrong here?
