blank column in excel export (ajax result)
blank column in excel export (ajax result)
djevolucion
Posts: 1Questions: 1Answers: 0
I did as recommended in the following link.
It works fine but when exporting to excel the column is blank.
Any suggestion?
Answers
Its not recommended to use an ajax call in
columns.render
. This will result in an ajax request for each cell in the column while rendering the table. Not very efficient. Can you add the data for that column in your server script?To answer your question it looks like you need to use Orthogonal data like this export example.
Kevin