-
Bug
-
Resolution: Fixed
-
Critical
-
8.5.0
-
Security Level: Jimmy
-
None
-
None
Steps to Reproduce
run the attachement shadow-insertion-order.zul
Current Result
in the minimum case the page renders
div 2 div 1 div 3
Expected Result
div 1 div 2 div 3
Debug Info
only happens when the test expression use a dynamic @load or @init annotation
Workaround
surround the children with a component e.g. <nodom>
<apply> <nodom> <if test="@load(true)"> <div>div 1</div> </if> <div>div 2</div> <div>div 3</div> </nodom> </apply>