数据表中的重复行

时间:2013-12-10 14:41:04

标签: jsf-2 primefaces

我正在使用jsf 2.0和primefaces。使用命令按钮,我导航到另一个页面,显示加密项目的数据表。 我的问题是该数据表中的每一行都显示两次,尽管我在命令按钮中使用了一个BalusC解决方案中的preRenderView事件Why JSF calls getter many times

我的XHTML代码

<p:commandButton id="Later" style="width: 20%;height: 100%" value="Later" oncomplete="window.location.href = '/Hitonclick/data.xhtml'"  >
   <f:event type="preRenderView" listener="#{MB.preRender}"/>
</p:commandButton>
<p:dataTable id="datasTable" value="#{MB.dataList}"  var="item" rowsPerPageTemplate="5,10,15" paginatorTemplate="{CurrentPageReport}  {FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {RowsPerPageDropdown}" 
                             paginator="true" rows="10" styleClass="case-table"  emptyMessage="No records found with given criteria" paginatorPosition="bottom" 
                             selectionMode="single" rowKey="#{item}" filteredValue="#{MB.filteredDatas}"  
                             selection="#{MB.selectedData}"  >
   <p:ajax event="rowSelect" />

   <p:column styleClass="blockable" filterStyle="width: 250px"  filterBy="#{item} " sortBy="#{item}">
      <h:outputText value="#{item}"/>
   </p:column>
</p:dataTable>

我的sessionScoped managedBean的一部分

 @PostConstruct
 public void init() {
        mailList=new ArrayList<>();
 }
 public void preRender(ComponentSystemEvent event) {
        // Or in some SystemEvent method (e.g. <f:event type="preRenderView">).
           dataList=this.protectDatas();
 } 
 public ArrayList<String> getDataList() {
        return dataList;
 }
 public void setDataList(ArrayList<String> dataList) {
        this.dataList = dataList;
 } 

protectData()方法

public ArrayList<String> protectDatas(){
      for (int k = 0; k < datass.size(); k++) {
        String originalText;
        originalText = (String) datass.get(k).toString();

        String subStringToFind = "@";
        int x = originalText.indexOf(subStringToFind);

        String s1 = originalText.substring(x + 1);
        String f = originalText.replace(s1, "*******.***");

        getDataList().add(f);
       }
   return dataList;   
}

1 个答案:

答案 0 :(得分:-1)

您不能在primefaces数据表上迭代一组。请参阅here

您可以尝试删除重复的项目,但仍然有如下列表。

yourList.clear();
yourList.addAll(new HashSet<>(yourList));