Hi,
I'm filtering my grid by using passing in a function to the operator like this:
dataSource.filter({
operator: setFilter
}
})
var setFilter = function(item) {
// iterate each item and return true or false if item matches value
}
this works perfectly and returns the correct view. However, I need access to the filters applied. Calling dataSource.filter().filters is returning empty object {}. Can you help please?