In the "compare" I only have access to (cellData, val1, val2), however I need to also take into account data in other other columns as my filter column is rendered using multiple data sources.
How can I do this, besides completing the column data externally.
filter: {
conditions: {
range: {
compare: function(cellData, val1, val2) {
// need to access ui here to get other column data
}
}
}
}