Removing a call to setCursorParent() appears to resolve this issue. setCursorParent would have the effect of placing each child at the top of the output, resulting in incorrect order.
+++ compat/components/src/main/java/com/icesoft/faces/component/panelseries/PanelSeriesRenderer.java (working copy)
@@ -78,8 +78,9 @@
childs = list.getChildren().iterator();
while (childs.hasNext()) {
UIComponent nextChild = (UIComponent) childs.next();
+System.out.println("PanelSeries encoding " + nextChild);
if (nextChild.isRendered())
{
- domContext.setCursorParent(root);
+// domContext.setCursorParent(root);
encodeParentAndChildren(facesContext, nextChild);
}
}
Removing a call to setCursorParent() appears to resolve this issue. setCursorParent would have the effect of placing each child at the top of the output, resulting in incorrect order.
+++ compat/components/src/main/java/com/icesoft/faces/component/panelseries/PanelSeriesRenderer.java (working copy)
{ - domContext.setCursorParent(root); +// domContext.setCursorParent(root); encodeParentAndChildren(facesContext, nextChild); }@@ -78,8 +78,9 @@
childs = list.getChildren().iterator();
while (childs.hasNext()) {
UIComponent nextChild = (UIComponent) childs.next();
+System.out.println("PanelSeries encoding " + nextChild);
if (nextChild.isRendered())
}