I'm having some doubts about ajax on JSF.
My xhtml looks like this:
<h:body>
<h:form id="menuForm">
<h:outputLabel for="menu">Available actions: </h:outputLabel>
<h:selectOneMenu id="menu" value="#{menu.mainMenuItem}">
<f:selectItem itemLabel="Select an option..." itemValue="null" />
<f:selectItems value="#{menu.mainMenuItems}" />
<f:ajax render=":menuForm :adminUsersForm :loadInfoForm :viewFilesForm" />
<!-- <f:ajax render="@all" /> -->
</h:selectOneMenu>
</h:form>
<h:form id="adminUsersForm"
rendered="#{menu.mainMenuItem == 'Admin users.'}">
<h:commandButton value="Button 1" />
</h:form>
<h:form id="loadInfoForm"
rendered="#{menu.mainMenuItem == 'Load info.'}">
<h:commandButton value="Button 2" />
</h:form>
<h:form id="viewFilesForm"
rendered="#{menu.mainMenuItem == 'View files.'}">
<h:commandButton value="Button 3" />
</h:form>
</h:body>
When I use <f:ajax render=":menuForm :adminUsersForm :loadInfoForm :viewFilesForm" /> I get the malformedXML error, on the other hand when I use <f:ajax render="@all" /> the correct <h:form>is rendering.
Whats happening in here? I read that using ajax we can render components just inside the same form, but if we use the :componentID it is possible to render -using ajax- components outside a form.
Thanks in advance, and maybe it's a basic question but I'm very new to JSF and trying to learn.