Complex filter logic

Complex filter logic

BPATBPAT Posts: 28Questions: 13Answers: 1

Can DataTables handle something like:
(Column1 >= minAmt && Column1 <= maxAmt) || (Column2 >= minAmt && Column2 <= maxAmt)

If not is there an easy way to completely remove the Datatables table and then reinitialize if that's the correct term?

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 64,954Questions: 1Answers: 10,758 Site admin

    Where? On the client-side or with a server-side library? If the server-side what library are you using?

    Allan

  • BPATBPAT Posts: 28Questions: 13Answers: 1

    Client side.

    The table is generate via a REST query to a SharePoint list. I then will manipulate that data to determine how the table is built. I was hoping to just get all the data from SharePoint and then manipulate table filtering using your awesomeness.

  • allanallan Posts: 64,954Questions: 1Answers: 10,758 Site admin
    Answer ✓

    For complex client-side filtering you need to use a custom search plug-in.

    A UI for that is something I hope to introduce in future (although it will probably be next year).

    Regards,
    Allan

This discussion has been closed.