Hello when I use the export feature, is it possible to avoid the export of the hidden column ? (maybe it is possible to export it programmatically)
i found a solution browsing sorry for the disturbing
buttons: [ { extend: 'excel', text: 'Excel', exportOptions: { columns: [ ':visible' ] } } ]
I don't know how you export your data from the table but if it is via button click then checkout this link where you can extract the raw data of the table and preprocess that before sending to the server.
It is an alternative.
It looks like you're new here. If you want to get involved, click one of these buttons!
Answers
i found a solution browsing sorry for the disturbing
I don't know how you export your data from the table but if it is via button click then checkout this link where you can extract the raw data of the table and preprocess that before sending to the server.
It is an alternative.