Pessoal quem puder me ajudar…desde ja agradeço…
Uso jsf 1.1 com myFaces 1.1. Estou usando t:dataTable, com t:dataScroller pra paginação, que funcionam perfeitamente, porém em uma das minhas páginas, tenho várias abas, e devido ao fato de a pagina ser submitada quando clico nos botes de paginação, retorna semrpe pra primeira aba. Por isso estou tentando fazer isso usando ajax, pra renderizar somente a tabela e os botoes, mas nao funciona.
Segue o trecho da jsp onde esta minha tabela e paginação:
.
.
.
<a4j:commandButton id=“pesquisarProjLei”
styleClass=“bt_pesquisar bto_input” image="/Img/blank.gif"
action="#{projetoLeiFormBeanHome.atualizaListaProjLei}"
onclick=“ajaxLoader(”.box-3");"
oncomplete=“javascript:atualizaHeight();removeBox();”
reRender=“PaneltabelaListagemProjLei”>
</a4j:commandButton>
.
.
.
<h:panelGrid style=“width:100%;” id=“PaneltabelaListagemProjLei”>
<t:dataTable styleClass=“tabelaListagem”
rendered="#{!empty projetoLeiFormBeanHome.listaProjetosLei && objectManager.dataContext.pesquisaAtivada == 1}"
columnClasses=“tabelaListagem td0, tabelaListagem td0,tabelaListagem td0,tabelaListagem td3, tabelaListagem td3,
tabelaListagem td3, tabelaListagem td3,tabelaListagem td3, tabelaListagem td1, tabelaListagem td0,
tabelaListagem td0”
value="#{projetoLeiFormBeanHome.listaProjetosLei}"
var=“projetosLei” id=“listaPL” forceId=“true” rows=“2”>
<t:column>
<f:verbatim>
<input type="checkbox" />
</f:verbatim>
</t:column>
<t:column>
<f:facet name="header">
<t:outputText styleClass="titlAssCad1"
value="#{bundle.label_numProjeto}" />
</f:facet>
<t:outputText value="#{projetosLei.nroProjLei}" />
</t:column>
<t:column>
<f:facet name="header">
<t:outputText styleClass="titlAssCad1"
value="#{bundle.label_ano}" />
</f:facet>
<t:outputText value="#{projetosLei.anoProjLei}" />
</t:column>
<t:column>
<f:facet name="header">
<t:outputText styleClass="titlAssCad1"
value="#{bundle.label_casaOrig}" />
</f:facet>
<t:outputText value="#{projetosLei.iOrige}" />
</t:column>
<t:column>
<f:facet name="header">
<t:outputText styleClass="titlAssCad1"
value="#{bundle.label_tpProjeto}" />
</f:facet>
<t:outputText value="#{projetosLei.iTpoProjLei}"
title="#{projetosLei.iTpoProjLei}" />
</t:column>
<t:column>
<f:facet name="header">
<t:outputText styleClass="titlAssCad1"
value="#{bundle.label_autor}" />
</f:facet>
<t:outputText value="#{projetosLei.autorProjLei}"
title="#{projetosLei.autorProjLei}" />
</t:column>
<t:column>
<f:facet name="header">
<t:outputText styleClass="titlAssCad1"
value="#{bundle.label_cadaCad}" />
</f:facet>
<t:outputText value="#{projetosLei.dtCadProjLei}" />
</t:column>
<t:column>
<f:facet name="header">
<t:outputText styleClass="titlAssCad1"
value="#{bundle.label_assunto}" />
</f:facet>
<t:outputText value="#{projetosLei.iAssnt}"
title="#{projetosLei.iAssnt}" />
</t:column>
<t:column>
<f:facet name="header">
<t:outputText styleClass="titlAssCad1"
value="#{bundle.label_ementa}" />
</f:facet>
<t:outputText value="#{projetosLei.iEmentaProjLei}"
title="#{projetosLei.iEmentaProjLei}" />
</t:column>
<t:column>
<a4j:commandLink
oncomplete="javascript:openModal('cadPendenciaEncaminhar.jsf', 670, 550);return false;"
actionListener="#{pendenciaFormBean.pendenciaRedirect}"
styleClass="lkExcluir">
<t:graphicImage url="/Img/encaminhar.gif"
styleClass="image_click" title="Encaminhar Projeto" />
<f:param name="paramPendPL1" value="#{projetosLei.cProjLei}" />
</a4j:commandLink>
</t:column>
<f:verbatim> </f:verbatim>
<authz:authorize ifAllGranted="ROLE_ATUALIZA, ROLE_PL">
<t:column>
<a4j:commandLink
oncomplete="javascript:redirectBrowser('redirectPL');"
actionListener="#{projetoLeiFormBean.atualizaRedirect}"
styleClass="lkExcluir">
<t:graphicImage url="/Img/upd.png" styleClass="image_click"
title="Atualizar Projeto de Lei" />
<f:param name="chaveProjLei1" value="#{projetosLei.cProjLei}" />
</a4j:commandLink>
</t:column>
</authz:authorize>
</t:dataTable>
<a4j:support event="onclick" ajaxSingle="true"
reRender="scrollerPL,listaPL" />
<t:dataScroller for="listaPL" paginator="true" id="scrollerPL"
paginatorMaxPages="10" renderFacetsIfSinglePage="true">
<f:facet name="first">
<h:graphicImage title="#{bundle.label_primeira}"
value="Img/first.gif"
style="border:0" />
</f:facet>
<f:facet name="previous">
<h:graphicImage title="#{bundle.label_anterior}"
value="Img/prev.gif"
style="border:0" />
</f:facet>
<f:facet name="next">
<h:graphicImage title="#{bundle.label_proxima}"
value="Img/next.gif"
style="border:0" />
</f:facet>
<f:facet name="last">
<h:graphicImage title="#{bundle.label_ultima}"
value="Img/last.gif"
style="border:0" />
</f:facet>
</t:dataScroller>
</h:panelGrid>