简体   繁体   English

Richfaces:组件丰富:dataScroller 不起作用

[英]Richfaces: component rich:dataScroller doesn't work

i'm using richfaces 3.3.3 I've a rich:dataTable inside another rich:dataTable and both have a rich:dataScroller but the inner doesn't work:我正在使用richfaces 3.3.3 我在另一个rich:dataTable 中有一个rich:dataTable 并且两者都有一个rich:dataScroller 但内部不起作用:

<rich:dataTable id="dataTableVisibility" value="#{jsfGridUtenti.itemKeys}"                        
    var="roleName" cellspacing="1"
    cellpadding="1" border="1"
    styleClass="tab" style="width:60%"                                                 
    rowClasses="rdispari,rpari"
    headerClass="headTab" rows="3"
    rendered="#{jsfGridUtenti.renderPanelReportVisibility}">

    <f:facet name="footer">
        <rich:datascroller for="dataTableVisibility"
            fastStep="10" pagesVar="pageCountCl"
            pageIndexVar="pageIndexCl"
            maxPages="9" renderIfSinglePage="false"
            selectedStyle="font-weight:bold;">
        </rich:datascroller>
    </f:facet>
    <h:column>
        <f:facet name="header">
           #{applicationMessages.ruolo}
        </f:facet> 

        <a4j:commandLink reRender="reportUserVisibilityCompanyRoleClass"  action="#{jsfGridUtenti.deleteAssociationRole(roleName)}">                                                           
            <h:graphicImage styleClass="toolbarLabel"  url="../resources/img/cancella.png" />
        </a4j:commandLink>
        <rich:spacer height="1" width="8" /> 
        <h:outputText  style="font-size:11px" value="#{roleName}"/>                                          
    </h:column>
    <h:column>                                        
        <f:facet name="header">
            #{applicationMessages.companyAssociate}
        </f:facet>  

        <h:column>
             <rich:dataTable  id="dataTableCompany"
                 var="company" value="#{jsfGridUtenti.findCompanyInHashMap(roleName)}"                                                                                                         
                 style="width:100%" rows="5"
                 rowClasses="rdispari,rpari"
                 columnsWidth="10%,10%,80%"
                 headerClass="headTab">

                 <f:facet  name="footer">
                     <rich:datascroller for="dataTableCompany"
                         fastStep="10" pagesVar="pageCountCls"
                         pageIndexVar="pageIndexCls"
                         maxPages="9" ajaxSingle="true"
                         selectedStyle="font-weight:bold;"
                         renderIfSinglePage="false">                                                          
                     </rich:datascroller>
                 </f:facet>

                 <h:column>
                     <a4j:commandLink reRender="reportUserVisibilityCompanyRoleClass"  action="#{jsfGridUtenti.deleteAssociationCompany(roleName,company)}">
                         <h:graphicImage  styleClass="toolbarLabel"  url="../resources/img/cancella.png" />
                     </a4j:commandLink>                                                                                        
                 </h:column>
                 <h:column>
                     <a4j:commandLink  immediate="true" action="#{jsfGridUtenti.setCompanyToShow(roleName,company)}"            
                         reRender="showClassi,panelGridReport">
                         <h:graphicImage  styleClass="toolbarLabel"  url="../resources/img/lente.png" />                                                             
                     </a4j:commandLink>
                 </h:column>
                 <h:column>
                     <h:outputText style="font-size:11px" value="#{company.label}"/>
                 </h:column>
             </rich:dataTable>                                                                                                                                                                                                                                                                                                
         </h:column> 
     </h:column>
 </rich:dataTable>

Now when I click on the outer rich:dataScroller it works well, instead when I click on the inner nothing happens.现在,当我单击外部rich:dataScroller它运行良好,而当我单击内部时,什么也没有发生。 How can I fix?我该如何解决?

This is a known issue.这是一个已知的问题。 rich:datascroller doesn't support nested iteration components such as dataTable , repeat etc. There is a JIRA issue for this. rich:datascroller不支持嵌套的迭代组件,例如dataTablerepeat等。为此存在一个JIRA 问题

Did you say 'nothing happens'?你说“什么都没有发生”吗? Did you look at your console?你看你的控制台了吗? Doesn't it display a warning like this?它不显示这样的警告吗?

The requested page #2 isn't found in the model containing 1 pages. Paging is reset to page #1

I got the same warning message and solved it by adding a session variable like:我收到了相同的警告消息并通过添加一个会话变量来解决它,例如:

<rich:dataScroller for="table" page="#{sessionBean.page}" />

In my case the bean wasn't accessible (due to scope) before I changed the code.在我的情况下,在更改代码之前无法访问 bean(由于范围)。 I was on the wrong track because I would have expected a warning/error pointing out that the problem is related to the expression language.我走错了路,因为我本以为会有警告/错误指出问题与表达式语言有关。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM