]> SALOME platform Git repositories - tools/eficas.git/commitdiff
Salome HOME
Prends en compte les optionnels sous du MC pointé
authorEric Fayolle <eric.fayolle@edf.fr>
Thu, 10 Feb 2022 16:59:49 +0000 (17:59 +0100)
committerEric Fayolle <eric.fayolle@edf.fr>
Thu, 10 Feb 2022 16:59:49 +0000 (17:59 +0100)
testFlask/templates/commandes_2.html

index c70e059ae1e431c5969a89bc2ff26b4722f3dbd0..53158c5480b2864aa25cd8b6d2489cb2e10a6062 100644 (file)
@@ -677,8 +677,8 @@ $(function(){
            
            let buildOptionalTreeSrc=function(node) {
                if ( node == null ) return [];
-               let parentList = node.getParentList(false,false); // default : (false,false)==(rootNode exclus, not self)
-               if ( parentList.length > 0 ) { parentList=parentList.slice(1);}; // The first node is the code node
+               let parentList = node.getParentList(false,true); // default : (false,false)==(rootNode exclus, not self)
+               if ( parentList.length > 0 ) { parentList=parentList.slice(1);}; // The first node is the current dataset name node
                // La construction des optionals en suivant les parents fonctionnent car les SIMP ne portent pas les optionnals
                // [ {title: "Node 1"}, {title: "Folder 2", children: [ {title: "Node 2.1"}, {title: "Node 2.2"} ]} ]
                // [ {title: "Node 1"} ] + [ {title: "Folder 2", children: [ {title: "Node 2.1"}, {title: "Node 2.2"} ]} ]