is it possible to include render column on rows().data()
is it possible to include render column on rows().data()
vincmeister
Posts: 136Questions: 36Answers: 4
Hi Allan,
is it possible to include render column on rows().data()
i have a table with raw data columns and rendered columns.
I want to send whole data from datatables to php.
I'm using this
var ArrID = table.rows().data().toArray();
but the render column doesn't included. Please advise, thanks
regards,
Danny
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Not using
rows().data()
since that just gets the underlying data.You need to use
cells().render()
to get the rendered data.Allan
works perfectly, thanks Allan