Feras,
fiz uma pagina com a extensão .xhtml conforme esta abaixo, estou com 2 problema de quando uso a tag <ui:include src=“caminho do layout” />,
o 1° e que no IE quando clico no botão ele não da o submit na pagina no FireFox funciona blz
o 2° e que fiz um pagina de cadastro e adicionei e tag <ui:include src=“caminho do layout” /> mas os dados que preencho para salvar no banco não são subimetidos,
quando eu tiro a tag ui:include ai funciona normalmente alguuém pode ajudar ?
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:t="http://myfaces.apache.org/tomahawk"
xmlns:rich="http://richfaces.org/rich"
xmlns:a4j="http://richfaces.org/a4j"
xmlns:c="http://java.sun.com/jstl/core">
<head>
<a4j:loadStyle src="/resources/css/style.css"></a4j:loadStyle>
</head>
<h:form id="idLogin">
<body>
<table>
<tr>
<td>
<ui:include src="/paginas/layout/layout.xhtml" />
</td>
</tr>
<tr>
<td align="center">
<h:commandButton action="#{validarUsuario.autenticarUsuario}" value="Login" styleClass="buttonBig" />
</td>
</tr>
</table>
</body>
</h:form>
</html>