-1

我不能很好地解释这个 - 它需要看到: 视频截屏

请解释一下会发生什么?

下一个代码工作并返回 true 或 false 但是当我把它放到 render="" 这不起作用。

#{!empty detailsBean.goods.pictures}

渲染=“真”渲染=“假”渲染=“#{真}” - 工作

<p:commandButton id="btn_details" value="#{msg.btn_details}" oncomplete="PF('dlg-detailed').show()" update=":dlg-detailed-id">
    <f:setPropertyActionListener target="#{detailsBean.goods}" value="#{goods}" />
    <f:param name="id" value="#{goods.id}"/>
</p:commandButton>

对话框 - 我尝试在其中渲染带有条件的文本。

<p:dialog id="dlg-detailed-id" widgetVar="dlg-detailed" header="#{msg.btn_details}" dynamic="true" modal="true" draggable="false" width="800" height="600">
    <h:outputText value="Some Text For Rendering" rendered="#{!empty detailsBean.goods.pictures}" />
</p:dialog>

Mojarra 2.1.7-jbossorg-1
JBoss AS 7.1.1

我为我的英语错误道歉

4

1 回答 1

0

在这种情况下,解决方案是:添加 <h:form> 标签然后渲染="#{!empty detailsBean.goods.pictures}" 工作

<h:form id="form-detailed" >
    <p:dialog id="dlg-detailed-id" widgetVar="dlg-detailed" header="#{msg.btn_details}" dynamic="true" modal="true" draggable="false" width="800" height="600">
        <h:outputText value="Some Text For Rendering" rendered="#{!empty detailsBean.goods.pictures}" />
    </p:dialog>
</h:form>
于 2013-10-10T06:10:59.803 回答