Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
genotoul-bioinfo
jflow
Commits
7a0af4c7
Commit
7a0af4c7
authored
Sep 16, 2015
by
Frédéric Escudié
Browse files
Fix bug with excluded/invisible checkboxes management in run workflow.
parent
73730458
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/js/jflow-wfform.js
View file @
7a0af4c7
...
...
@@ -453,8 +453,10 @@ Handsontable.cellTypes["bootdate"] = Handsontable.BootstrapDateCell;
}
$
(
"
#workflow_form :checkbox
"
).
each
(
function
(){
if
(
$
(
this
).
parents
(
"
[id^=handsontable_]
"
).
length
==
0
){
// Exclude checkboxes from handsontable
if
(
!
$
(
this
).
prop
(
'
checked
'
))
{
params
+=
$
(
this
).
attr
(
"
name
"
)
+
"
=false&
"
;
}
if
(
$
(
this
).
is
(
"
:visible
"
)
){
if
(
$
(
this
).
parents
(
"
[id^=handsontable_]
"
).
length
==
0
){
// Exclude checkboxes from handsontable
if
(
!
$
(
this
).
prop
(
'
checked
'
))
{
params
+=
$
(
this
).
attr
(
"
name
"
)
+
"
=false&
"
;
}
}
}
});
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment