Changes for page Rangee Index
Last modified by Tobias Wintrich on 2025/06/04 09:20
From version 9.14
edited by Tobias Wintrich
on 2021/09/27 21:04
on 2021/09/27 21:04
Change comment:
There is no comment for this version
To version 9.13
edited by Tobias Wintrich
on 2021/09/27 21:03
on 2021/09/27 21:03
Change comment:
There is no comment for this version
Summary
-
Objects (1 modified, 0 added, 0 removed)
Details
- XWiki.WikiMacroClass[0]
-
- Macro code
-
... ... @@ -9,6 +9,34 @@ 9 9 hu 10 10 #end 11 11 12 +<ul> 13 +#foreach ($child in $doc.getChildrenReferences()) 14 + <li class="jstree-open"> 15 + [[$child]] 16 + <ul> 17 + #foreach ($subchild in $xwiki.getDocument($child).getChildrenReferences()) 18 + <li class="jstree-open"> 19 + [[$subchild]] 20 + <ul> 21 + #foreach ($subsubchild in $xwiki.getDocument($subchild).getChildrenReferences()) 22 + <li class="jstree-open"> 23 + [[$subsubchild]] 24 + <ul> 25 + #foreach ($subsubsubchild in $xwiki.getDocument($subsubchild).getChildrenReferences()) 26 + <li class="jstree-open"> 27 + [[$subsubsubchild]] 28 + </li> 29 + #end 30 + </ul> 31 + </li> 32 + #end 33 + </ul> 34 + </li> 35 + #end 36 + </ul> 37 + </li> 38 +#end 39 +</ul> 12 12 {{/html}} 13 13 {{/velocity}} 14 14 {{/tree}}