In the following code
<ui:define name="left">
<h:body>
<h:form prependId="false">
<h:panelGrid columns="2">
<h:outputText value="first name: "/><h:inputText value="${first}" size="11"/>
<h:outputText value="last name: "/><h:inputText value="${last}" size="11"/>
<h:commandButton value="OK" id="comId" action="${squad.add(first, last)}">
<f:ajax execute="@form" render="custId"/>
</h:commandButton>
</h:panelGrid>
</h:form>
</h:body>
</ui:define>
<ui:define name="content">
<ezcomp:customComponent id="custId" rendered="false" source="${squad.users}"/>
</ui:define>
When i press the OK button i have the error malformedXML: During update: custId not found
, but as i refresh the page it properly displays the data in the customCompoment. How should i fix this ?