Skip to content
Snippets Groups Projects
Commit f47da196 authored by Jonathan Foucher's avatar Jonathan Foucher
Browse files

map colums to headers in excel datatables export. Fixes...

map colums to headers in excel datatables export. Fixes #999
parent e89f4971
No related branches found
Tags v2.4.8
No related merge requests found
Pipeline #90819 failed
......@@ -175,7 +175,7 @@
{% set dataTableOptions = {
columns: cols,
excludeId : true,
excludeId : false,
order: [
[1, 'asc' ]
],
......
......@@ -139,6 +139,7 @@
async: false
});
var exportBody = jsonResult.responseJSON.data;
var colNames = params.columns.map(function(c) { return c.data }).filter(i => i !== 'actions')
return exportBody.map(function (el) {
return colNames.map(function (key) {
......@@ -154,18 +155,27 @@
var visible = api.columns().visible();
var params = api.ajax.params();
var headers = []
params.columns = params.columns.filter(function(c, i) {
return visible[i] && c.data !== 'actions'
var ret = visible[i] && c.data !== 'actions'
if (options.excludeId) {
ret = ret && c.data !== "id"
}
if (ret) {
headers.push(api.columns().header()[i].textContent)
}
return ret;
})
if (options.excludeId) {
params.columns = params.columns.filter( (c) => c.data !== "id")
}
var exportBody = getFullData(params);
d.body = [];
d.body.length = 0;
d.body.push.apply(d.body, exportBody);
d.header = [];
d.header.length = 0;
d.header.push.apply(d.header, headers);
})
} catch { }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment