melloware commented on code in PR #730: URL: https://github.com/apache/myfaces/pull/730#discussion_r1686997683
########## impl/src/main/java/org/apache/myfaces/context/servlet/PartialViewContextImpl.java: ########## @@ -579,6 +579,11 @@ public VisitResult visit(VisitContext context, UIComponent target) { ((EditableValueHolder)target).resetValue(); } + else if (!VisitContext.ALL_IDS.equals(context.getIdsToVisit())) + { + // Render ID didn't specifically point an EditableValueHolder. Visit all children as well. + target.visitTree(VisitContext.createVisitContext(FacesContext.getCurrentInstance(), null, context.getHints()), this); Review Comment: OK @tandraschko i might need a hint on this one. PF does his slighlty differnetly by just calling visitTree where in this case BalusC specifically creates a new VisitContext? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@myfaces.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org