Details
-
Improvement
-
Status: Closed
-
Normal
-
Resolution: Probably fixed, check next version
-
None
-
None
-
None
Description
When having an HST page based on a common page, the order of the list of child content names is not kept.
E.g.
hst:pages/defaultpage has subcomponents header, main, footer.
hst:pages/home references defaultpage and has only child component main.
In the corresponding component, the order of this.componentConfig.componentConfiguration.orderedListConfigs is not header, main, footer but main, header, footer.
This makes it tricky to use dynamic hst:includes in my jsp, like so:
<hst:defineObjects />
<c:forEach var="child" items="${hstResponseChildContentNames}">
<hst:include ref="${child}"/>
</c:forEach>