Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Libriciel
web-DPO
Commits
55373b20
Commit
55373b20
authored
Apr 07, 2020
by
Théo GUILLON
Browse files
Correction : affichage des valeurs pour le menu déroulant et le multi-select
parent
62d510c0
Changes
1
Hide whitespace changes
Inline
Side-by-side
app/webroot/js/FormulaireGenerator/createFormulaire.js
View file @
55373b20
...
...
@@ -601,9 +601,9 @@ var createForm = function(typeCreateForm) {
$
(
idContainer
).
find
(
'
.ui-selected
'
).
find
(
findType
).
each
(
function
()
{
if
(
list
===
''
)
{
list
=
list
+
$
(
this
).
val
();
list
=
list
+
$
(
this
).
text
();
}
else
{
list
=
list
+
'
\n
'
+
$
(
this
).
val
();
list
=
list
+
'
\n
'
+
$
(
this
).
text
();
}
});
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment