1

我有这样的数据表:

  <p:dataTable value="#{noteMB.noteList}" var="noteItem" id="noteListTable" 
        rowKey="#{noteItem.hashCode()}" selectionMode="single"  selection="#noteMB.selectedNote}" paginator="true" rows="10" paginatorPosition="top"
        paginatorTemplate="{CurrentPageReport}  {FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {RowsPerPageDropdown}" rowsPerPageTemplate="5,10,15">

    <p:column width="300">
       <f:facet name="header">
            <h:outputText value="#{noteItem.name == 'blabla' ? 'true' : 'false' }"  />
       </f:facet> 
            <h:outputText value="#{noteItem.code}"  />
    </p:column>
  </p:dataTable>

我的问题:为什么 noteItem 在 facet name="header" 区域为空?当我运行此代码时,标题(noteItem.name)为假,列值(noteItem.code)有一个值。

4

1 回答 1

2

noteItem 是您的 var 条目。

var="noteItem"

假设这个 var 属性保存dataTable. var 将遍历noteList.

正如丹尼尔所说,在h:facet标记期间,甚至没有开始创建行。它是每列的主标题,实际上没有数据表行。因此,您在那里得到空值。

简而言之,您无法访问构面中 var 属性给出的对象。因为构面是行独立的

于 2013-04-12T10:17:57.130 回答