Merged V3.4-BUG-FIX to HEAD

32177: Backed out change from ALF-11247 - actions generated for child nodes are no longer working after the change.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@32180 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Kevin Roast
2011-11-22 12:12:11 +00:00
parent 7b7d700aec
commit 2f3b3cf3b5

View File

@@ -291,9 +291,7 @@ public class UIActions extends SelfRenderingComponent
HtmlPanelGroup wrapper = (HtmlPanelGroup)facesApp.createComponent(ComponentConstants.JAVAX_FACES_PANELGROUP); HtmlPanelGroup wrapper = (HtmlPanelGroup)facesApp.createComponent(ComponentConstants.JAVAX_FACES_PANELGROUP);
wrapper.setId(createUniqueId()); wrapper.setId(createUniqueId());
wrapper.getAttributes().put("contextId", contextId); wrapper.getAttributes().put("contextId", contextId);
List children = this.getChildren(); this.getChildren().add(wrapper);
children.clear();
children.add(wrapper);
this.groups.add(contextId); this.groups.add(contextId);
// process each ActionDefinition in the order they were defined // process each ActionDefinition in the order they were defined