Author Topic: Range Filter data bind from server  (Read 1528 times)

sachinkumarB.patel

  • Newbie
  • *
  • Posts: 4
    • View Profile
Range Filter data bind from server
« on: September 21, 2020, 12:09:06 pm »
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,
    }
}