<h:form id="formCadastrar">
<p:dialog header="Cadastrar Imóvel" closable="false" widgetVar="dlgCadastrar" resizable="false" id="dlgCadastrar" modal="true">
<p:growl id="growlCadastrar" />
<h:panelGrid id="pgTodosPanel" columns="1">
<p:tabView id="tudo" dynamic="true">
<p:tab title="Classificação">
<p:fieldset legend="Dados Principais" style="border: 1px solid #a8a8a8; width:900px;" collapsed="false" >
<h:panelGrid id="pgCadastrar" columns="6" cellpadding="5"
style="margin:0 auto; float: left;">
//......aqui tem as informações etc......
Aqui meu commandbutton salvar
<p:commandButton value="Salvar" style="float:rigth; margin-left:-427px"
update=":formLista:dtImoveis, growlCadastrar"
actionListener="#{imoveisBean.save()}"
oncomplete="validarcadastro(xhr, status, args)" icon="icon-disk" />
Aqui botão para adicionar um imóvel
<p:commandButton style="margin-bottom: 8px; margin-left: 0px"
update="@form"
actionListener="#{imoveisBean.voltarimoveis()}"
oncomplete="dlgCadastrar.show();" value="Novo Imovel"
icon="icon-add">
</p:commandButton>
public String voltarimoveis() throws IOException {
this.imovel = new Imovel();
this.imoveis = null;
this.codigo_corretores = null;
this.codigo_clientes = null;
return "index?faces-redirect=true";
}
O problema é que eu salvo, tudo certinho…mais quando eu clico novamente para adicionar uhm outro imovél as informações dentro da tabview estão la ainda o/,problema de update…
Quando uso somente dialog e um painelgrid eu do update nos 2 é funciona. mais agora com essa tabview lascou-se tudo sauashuashasu.
Como seria o update pra resolver isso ai -?
Se alguem puder me dar um help o/. agradeço!