Bom, se alguém puder me ajudar. Estou com o seguinte código:
<div style="width: 790px; height: 340px;">
<h:form id="frmHospital">
<rich:panel header="Novo hospital" style="width: 100%; height: 340px;">
<rich:tabPanel id="tbHospital" switchType="client">
<rich:tab header="Geral">
<f:view>
<h:form id="frmHospitalCliente">
<ui:include src="/hospital/hospital_cliente.xhtml"/>
</h:form>
</f:view>
</rich:tab>
<rich:tab header="Documentos">
<f:view>
<h:form>
<ui:include src="/hospital/hospital_documento.xhtml"/>
</h:form>
</f:view>
</rich:tab>
<rich:tab header="Responsáveis Técnicos">
<f:view>
<h:form>
<ui:include src="/hospital/hospital_responsavel.xhtml"/>
</h:form>
</f:view>
</rich:tab>
<rich:tab header="Preferências de Compra">
<f:view>
<h:form>
<ui:include src="/hospital/hospital_preferencia_compra.xhtml"/>
</h:form>
</f:view>
</rich:tab>
</rich:tabPanel>
</rich:panel>
<rich:panel style="width: 100%;">
<table style="width: 100%; height: 100%;">
<tr>
<td align="left"><h:outputText style="#{constanteBean.COR_FONTE_TEXTO_CAMPO_OBRIGATORIO}" value="#{constanteBean.TEXTO_CAMPOS_OBRIGATORIOS}"/></td>
<td align="right"><h:commandButton value="Incluir" style="width: 100px;" action="#{hospitalBean.incluir()}"/></td>
</tr>
</table>
</rich:panel>
</h:form>
<rich:notifyMessages stayTime="3000" nonblocking="true"/>
</div>
Porém esta linha não executa o action <td align="right"><h:commandButton value="Incluir" style="width: 100px;" action="#{hospitalBean.incluir()}"/></td>
Mas, se o segundo Panel for movido para que fique antes do primeiro Panel, o action executa. Alguém já passou por uma situação parecida, ou tem idéia do que possa ser?
Grato
