搜索之后,p:dataTable将不会更新,除非调用两次搜索或者输入和清除过滤器中的某些内容

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了搜索之后,p:dataTable将不会更新,除非调用两次搜索或者输入和清除过滤器中的某些内容相关的知识,希望对你有一定的参考价值。

我有一个简单的模型,在我的数据表中获取一些结果后尝试更新dataTable,我正在使用EJB在我的数据库中获取此结果。

问题是,在搜索之后,我的dataTable将不会更新,除非单击搜索按钮2次或在fieldText过滤器中键入内容并清除它之后。

我尝试将一些功能作为“onclick和更新”,但所有解决方案都不起作用。

一个重要的情况是:如果删除了我的dataTble的fieldText过滤器,则dataTable完全更新,而不是错误:)。

有人可以说另一种方式或方向来解决我的问题吗?

xhtml代码:

<h:form id="frmPesquisa">
    <p:panelGrid columns="3">
        <h:outputLabel value="Pesquisar" for="pesquisa" />
        <h:inputText id="pesquisa"
            value="#{cadastroClienteBean.valorPesquisa}" />
        <p:commandButton value="Pesquisar"
            action="#{cadastroClienteBean.pesquisar}" update="tableResult"
            onclick="PF('itemListases').clearFilters(); PF('itemListases').filter();"/>
    </p:panelGrid>
    <br />
    <br />
    <br />
    <p:dataTable rendered="#{cadastroClienteBean.listaVazia()}" paginator="true" rows="5" widgetVar="itemListases"
        emptyMessage="Não foram encontrados Itens"
        filteredValue="#{cadastroClienteBean.filtrados}" id="tableResult"
        value="#{cadastroClienteBean.clientes}" var="cliente" border="1"
        cellpadding="5">
        <p:column headerText="Código" filterBy="#{cliente.codigo}">
            <h:outputText value="#{cliente.codigo}" />
        </p:column>
        <p:column headerText="Nome">
            <h:outputText value="#{cliente.nome}" />
        </p:column>
        <p:column headerText="Idade">
            <h:outputText value="#{cliente.idade}" />
        </p:column>
        <p:column headerText="Sexo">
            <h:outputText value="#{cliente.sexo}" />
        </p:column>
        <p:column headerText="Profissão">
            <h:outputText value="#{cliente.profissao}" />
        </p:column>
    </p:dataTable>
</h:form>

Bean代码:

@Named
@SessionScoped
public class CadastroClienteBean implements Serializable {

    private static final long serialVersionUID = 1L;

    private Cliente cliente;
    private List<Cliente> clientes;
    private List<Cliente> filtrados;
    private String valorPesquisa;
    private String pesquisaAnterior;

    @EJB
    CadastroClienteEJB cadastroClienteEJB;

    public CadastroClienteBean() {
        System.out.println("===> Chamou o CONSTRUTOR");
        cliente = new Cliente();
        clientes = new ArrayList<Cliente>();
        filtrados = new ArrayList<Cliente>();
    }

    public void pesquisar() {
        if (!valorPesquisa.equals(pesquisaAnterior)) {
            filtrados = new ArrayList<Cliente>();
            if (this.valorPesquisa == null || this.valorPesquisa.equals("")) {
                pesquisaAnterior = new String(valorPesquisa);
                this.clientes = cadastroClienteEJB.buscarTodos();
            } else {
                pesquisaAnterior = new String(valorPesquisa);
                this.clientes = this.cadastroClienteEJB
                        .pesquisar(this.valorPesquisa);
            }
        }
    }
答案

非常感谢。它完美地运作。我删除了数据表的渲染并添加了一个id标记。在我的commandButton中,我插入了一个更新标记,其中包含我之前创建的dataTable的标记id。

以上是关于搜索之后,p:dataTable将不会更新,除非调用两次搜索或者输入和清除过滤器中的某些内容的主要内容,如果未能解决你的问题,请参考以下文章

DataTables:页脚不会根据搜索更新

jQuery DataTable 日期范围搜索

除非主窗口未聚焦,否则不会更新 QLabel

除非主窗口未聚焦,否则不会更新 QLabel

DataTables 搜索子行内容

如何从 p:dataTable 本身对 p:dataTable 进行 ajax 更新?