score:0

Accepted answer

had the same issue. apparently you can't use filtering with lazy loading mode (link). makes sense really.

for sorting, you could pass an onsort function and everytime a sort event happens (i.e: user clicks on the column header), you can send back a db request.

const onsort = (e) => {
 // use e.sortfield and e.sortorder to send a db request,
}

<datatable onsort={onsort} ... // rest of the stuff />

Related Query

More Query from same tag