we created server side filter and paging too,
the issue is we can't get all data for range filter,
so we made async method but it won't work, and no any error found so please can you help for the same :
doAjax function get column data from database and bind it into range option
pq.filter.conditions.range.filterFn = async function (ui) {
const result = await doAjax(ui.column.dataIndx);
return {
type: 'select',
options: result,
}
}