I think the topic explain what Im looking for :
template.xhtml
<div class="content">
<ui:insert name="content_homepage">Box Content Here</ui:insert>
</div>
index.xhtml
<ui:composition template="./template.xhtml">
<ui:define name="title">
JSF - The Sinfonet Portal
</ui:define>
<ui:define name="login">
<h:form id="form1" prependId="false">
<h:outputScript name="jsf.js" library="javax.faces" target="head" />
<span class="menu_span">Username</span>
<h:inputText value="#{login.name}" id="name" />
<span class="menu_span">
<h:commandButton value="Login" action="#{login.checkLogin}">
<f:ajax event="action" execute="name" render="??????"/>
</h:commandButton>
</span>
</h:form>
</ui:define>
<ui:define name="content_homepage">
<span class="content_title">Homepage</span>
</ui:define>
<ui:define name="content_logged">
<span class="content_title">OK. You are logged</span>
</ui:define>
</ui:composition>
Managed bean
import javax.faces.bean.ManagedBean;
import javax.faces.bean.RequestScoped;
@ManagedBean(name="login")
@RequestScoped
public class Login {
private String name = "";
public String getName() { return name; }
public void setName(String newValue) { name = newValue; }
public boolean checkLogin() {
if(name.length()==0) {
return true;
} else {
return false;
}
}
}
By using template definition, I insert the content_homepage as first content. After, when i do an ajax call, if the name isnt empty, I will load content_login. Is it possible to do this on JSF?
Cheers