Hi All, I have created a simple jsf page, when I acces this page without tiles then everything works fine but with tiles control does not transfer to the desired class specified in the action attribute of commandButton.
Can anybody tell where I am wrong? Thanks, Vinod <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %> <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %> <f:loadBundle basename="Message" var="Message"/> <f:view> <html> <head><title>Client</title></head> <body> <h:form id="clientForm"> <h:message for="clientForm" /><br /> <h:panelGrid columns="3"> <h:outputText value="#{Message.client_name_label}" /> <h:inputText id="client_id" value="#{Client.client_id}" required=" true"> <f:validateLength maximum="30" minimum="3" /> </h:inputText> <h:message for="client_id" /> <h:outputText value="#{Message.client_desc_label}" /> <h:inputText id="description" value="#{Client.description}" required="true"> <f:validateLength maximum="50" minimum="1" /> </h:inputText> <h:message for="description" /> <h:commandButton id="submit" action="#{Persister.saveClient}" value ="#{Message.client_submit_button}" /> </h:panelGrid> </h:form> </body> </html> </f:view>

