You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If we initialize the form with one line containing multiple comments, the deformOrderbuttons will not appear.
This is due to the way we retrieve the buttons in deform.processSequenceButtons
// Here we collect the deformSeqContainer of the nested sequence
var $ul = oid_node.find('.deformSeqContainer');
var $lis = $ul.find('.deformSeqItem');
...
$lis.find('.deformOrderbutton')
A fix could be
// Only list containers that are not nested in a sub-sequencevar$ul=oid_node.find('.deformSeqContainer:not(.deformSeq .deformSeqContainer)');// Only the container's children that are not nested in a sub-sequencevar$li=$ul.find('.deformSeqItem:not(.deformSeq .deformSeqItem)');
The text was updated successfully, but these errors were encountered:
tonthon
pushed a commit
to CroissanceCommune/autonomie
that referenced
this issue
Aug 4, 2015
The following Form Schema
If we initialize the form with one line containing multiple comments, the deformOrderbuttons will not appear.
This is due to the way we retrieve the buttons in deform.processSequenceButtons
A fix could be
The text was updated successfully, but these errors were encountered: