How do I handle Order By with Editor?
How do I handle Order By with Editor?
doctorjnupe
Posts: 21Questions: 6Answers: 1
I thought I saw an example that used -> (instance elements) to perform column order by operations. However, I am having issues finding the code or a what to perform order by. Will you please different me to the documentation that explains how to perform order by.
This question has accepted answers - jump to:
This discussion has been closed.
Answers
The Editor has no "order" method.
https://datatables.net//forums/discussion/comment/110555/#Comment_110555
Exactly as @tangerine says. With the
Editor
class the ordering is performed either on the client-side or the server-side based on the column sorting that has been applied to the table. There would be no point in having anEditor->orderBy()
method since it would just be overridden.There is an
Options->order()
method for the options list in joined tables if that might be what you were thinking of?Allan