IF语句在Primefaces数据表中不起作用



我想只在有数据的情况下显示一行。我的代码是:

<p:dataTable id="comments" var="comment"
        value="#{agencyBean.getCommentByAgency(agencyBean.tAgency)}"
        paginator="true" >
        <p:column>  
            #{comment.author.name}  
        </p:column>
        <p:column>
            <c:if test="${not empty comment.positiveComment}">
                <p:row>
                    <p:column>
                        <p:graphicImage library="images" name="positive.png" />
                    </p:column>
                    <p:column>  #{comment.positiveComment}  </p:column>
                </p:row>
                <br />
            </c:if>
        </p:column>
    </p:dataTable>

尽管我有数据,但没有显示行。我如何实现这个逻辑?谢谢!

通过使用rendered属性,尝试将条件表达式放置在<p:row>的标记本身中:

<p:column>
    <p:row rendered="#{not empty comment.positiveComment}">
        <p:column>
            <p:graphicImage library="images" name="positive.png" />
        </p:column>
        <p:column>  #{comment.positiveComment}  </p:column>
    </p:row>
    <br />
</p:column>

相关内容

  • 没有找到相关文章

最新更新