Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
madis
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Soluris
madis
Commits
f47da196
Commit
f47da196
authored
1 month ago
by
Jonathan Foucher
Browse files
Options
Downloads
Patches
Plain Diff
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
Branches containing commit
Tags
v2.4.8
Tags containing commit
No related merge requests found
Pipeline
#90819
failed
1 month ago
Stage: cache
Stage: tests
Stage: quality-assurance
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
templates/Registry/Conformite_traitement/list.html.twig
+1
-1
1 addition, 1 deletion
templates/Registry/Conformite_traitement/list.html.twig
templates/_Utils/_serverside_datatable_base.html.twig
+14
-4
14 additions, 4 deletions
templates/_Utils/_serverside_datatable_base.html.twig
with
15 additions
and
5 deletions
templates/Registry/Conformite_traitement/list.html.twig
+
1
−
1
View file @
f47da196
...
...
@@ -175,7 +175,7 @@
{%
set
dataTableOptions
=
{
columns
:
cols
,
excludeId
:
tru
e
,
excludeId
:
fals
e
,
order
:
[
[
1
,
'asc'
]
],
...
...
This diff is collapsed.
Click to expand it.
templates/_Utils/_serverside_datatable_base.html.twig
+
14
−
4
View file @
f47da196
...
...
@@ -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
{
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment