Break long table rows to columns
Break long table rows to columns
rdiniz14
Posts: 2Questions: 1Answers: 0
Hi,
I have a datatable like this:
But I want to split it to:
Is it possible with Jquery Datatable plugin?
Thank you in advance
R.
This question has an accepted answers - jump to answer
Answers
Datatables doesn't have an option for this. See the Data docs for details of the structures Datatables supports.
You could restructure the original data set to create the rows with multiple Year/Name columns then use that to populate the Datatable.
Kevin
Thank you, Kevin. Good idea