Can we sort the table with muliplt tbody?
Can we sort the table with muliplt tbody?

I am create datatable using dc chart engine. It created tbody element for row.
This discussion has been closed.
I am create datatable using dc chart engine. It created tbody element for row.
Answers
I'm afraid DataTables currently works with a single
tbody
element in the table only. Multipletbody
support is something I'd like to add in future, but to be honest that is probably quite a while off.You'd need to change the output to use a single
tbody
only or use jQuery to modify the DOM so there is a singletbody
only before the DataTable is initialised.Allan