Exported files do not include row group headers

Exported files do not include row group headers

EskindirEskindir Posts: 4Questions: 2Answers: 0

I have a table presenting data grouped into different regions, but the row group headers (the region names)
are not there on the exported files.

table = $('#compilation').DataTable({
"processing":true,
"serverSide":true,
"searching":false,
"deferRender":true,
"draw":1,
"ajax": endpoint,
"columns":[
{"data": "applied_transaction"},
{"data": "applications"},
{"data": "completed"},
{"data": "process"},
{"data": "rejected"}
],
"select": {
'style':'single'
},
"dom": 'Bfrtip',
"buttons": [
'copy',
'excel',
'pdf'
],
"rowGroup": {
dataSrc : 'region_name'
}
,
"scrollY": "400px",
"scrollCollapse": true,
"paging": false,
"bDestroy":true

            });

Answers

This discussion has been closed.