I'm evaluating the pro version of Handsontable that comes with a filter feature. Enabling filtering by value, the library provides options for all values available for a column (e.g., if a column holds numbers from 1 to 10, it would provide 10 options: 1,2,3,4,5,6,7,8,9,10).
As I'm loading chunks of data from a remote server, the library is not able to determine all distinct values that exist for a column. For example, given a table with a column showing booleans (false, true), the first page might only show false for this column, which results in the filter showing "false" as the only option to filter this column. Here I would like to provide options to filter this column by value: true, false. Is this possible with Handsontable?