Hide record
Hide record
aristidispap
Posts: 4Questions: 4Answers: 0
in DataTables
i am using server-side processing. I want to hide record by id number (In my case record with id =1 from my sql)
Is it possible?
This discussion has been closed.
Answers
Sure - since the filtering is done by the server-side processing script, just modify it to do
WHERE id != 1
.If you are using the Editor PHP libraries, you can supply conditions as described here.
Allan