Can we apply individual column search in editor datatables?

Can we apply individual column search in editor datatables?

SaymaSayma Posts: 2Questions: 0Answers: 0

I am using editor datatables with server-side processing, but i wish to have individual column search option as well. Is it possible to do so?

Replies

  • jacob.steinbergerjacob.steinberger Posts: 86Questions: 18Answers: 1

    Yes, I'm doing it now. As Allen pointed out, by default the code in Editor for a table/ajax definition uses POST while the client-side does a GET, so it doesn't work quite right. Set the ajax code to do a POST instead and you'll be good to go.

                    ajax: {
                            url: "server_side.php",
                            type: "POST"
                    },
    
  • SaymaSayma Posts: 2Questions: 0Answers: 0

    Thank you, It's working perfectly fine!

This discussion has been closed.