如何比较数据表primefaces中列的属性

时间:2018-04-20 04:54:20

标签: primefaces datatable multiple-columns

我正在使用带有列的数据表primefaces。示例

index----name----status
1        a       0
2        b       1

如果列状态的值显示为简单0=active1=hidden,我想进行比较。 我试过了

<c:choose>
   <c:if test="#{column.property == 'status'}">
      //i will do something, show value,action... that's will map to status
   </c:if>
   <c:otherwise>
     <p:outputLabel value=#{varTable[column.property]}/>
   </c:otherwise>
</c:choose>

但所有案例均为<c:otherwise>。我修复了删除属性status并在最后添加新列状态。但是如果列数较多,我需要比较仍在使用columns的列。请帮帮我!

0 个答案:

没有答案