-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Major
-
Affects Version/s: 1.0-beta-4
-
Component/s: None
-
None
以下で、outputTextが表示されない。
<h:form id="commandLinkForm">
<h:inputText id="text1" value="#
"/>
<h:commandLink id="link1" action="#
">
<f:verbatim>
<h:outputText value="#
"/>
</f:verbatim>
</h:commandLink>
</h:form>
Renderer.encodeChildren()で、component.getRenderersChildren()がfalseのとき
子供のcomponentをencodeしてなかったため。
Rendererを以下のように修正。
public void encodeChildren(FacesContext context, UIComponent component)
{
{ child.encodeChildren(context); }throws IOException {
AssertionUtil.assertNotNull("context", context);
AssertionUtil.assertNotNull("component", component);
for (Iterator itr = component.getChildren().iterator(); itr.hasNext()
UIComponent child = (UIComponent) itr.next();
child.encodeBegin(context);
if (child.getRendersChildren())
else
{ encodeChildren(context, child); }child.encodeEnd(context);
{ break; }if (context.getResponseComplete())
}
}