Exported files do not include row group headers
Exported files do not include row group headers
 Eskindir            
            
                Posts: 4Questions: 2Answers: 0
Eskindir            
            
                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
There have been many threads asking this. Export does not export the RowGroup information. This is also noted in the Compatibility matrix.
Kevin