3 Replies Latest reply on Jun 5, 2008 1:45 PM by lgweb

    Problems with <a4j:status> in RichDataTable

    lgweb

      After placing a status that opens a modal panel of waiting executo when a click on buttons on my table, the buttons of filterBy and sortBy tbm call the modal panel of waiting, I would like to not implement the loading, in filterBy ja ke it is working onkeyUp with the event, how can I avoid that?
      This button within this table:

      <a4j:commandLink action="#{Cidade.excluir}" id="excluir" status="status" reRender="tbcidade">
       <f:setPropertyActionListener target="#{Cidade.id}" value="#{cid.cidadeid}" />
       <h:graphicImage value="/images/BOTOES/Trash2.png" width="20" height="20" styleClass="imagem">
       </h:graphicImage>
       </a4j:commandLink>
      


      My columns are in this pattern:

      <rich:column filterBy="#{cid.cidadeid}" filterEvent="onkeyup" sortBy="#{cid.cidadeid}" filterDefaultLabel="Informe um Valor">
       <f:facet name="header">
       <h:outputText value="#{msg.pesq}"></h:outputText>
       </f:facet>
       <center>
       <h:outputText value="#{cid.cidadeid}"></h:outputText>
       </center>
       </rich:column>
      


      If someone can help I am grateful.
      hugs.