English 中文(简体)
具体说明在<reui:repeat>内提供元素的条件? <c:if>似乎没有工作
原标题:Specify conditional rendering of element inside <ui:repeat>? The <c:if> does not seem to work

我试图用<代码><ui:repeat>有条件地编制一个海关清单。 在清单中每出现1个作为项目价值的事件时,我需要增加一个细线。

我尝试使用<代码><c:if> within <ui:repeat>,但似乎没有工作。 它始终评价<代码>false。

<ul>      
    <ui:repeat value="#{topics.list}" var="topicId" >
        <li>#{topicId}</li>
        <c:if test="#{topicId eq -1}">  <br/>  </c:if>
    </ui:repeat>
</ul>

这是可能的吗?

最佳回答

Not with JSTL tags, no. 2. 它们在一段时间内进行着眼,而不是在时间上。 你们可以直观如下:当共同财产基金形成观点时,共同财产法的标签从上到下,其结果就是纯共同财产基金的组成部分树。 之后,当共同基金提出意见时,共同基金的各个组成部分从上到下,结果就是超文本。 因此,共同财产法和共同财产法并不像你从编码中期望的那样运行。 当时,<代码><c:if>, JSTL tag tag eds, the #{topicId} 由<代码><确定的变量;ui:repeat> JSF 部分在范围上可查。

您不必使用<代码><c:if>,而需要具体说明以下条件:rendered Depende of the JSF part of interest. 由于您实际上无所作为,请在<ui:fragment>

<ul>      
    <ui:repeat value="#{topics.list}" var="topicId" >
        <li>#{topicId}</li>
        <ui:fragment rendered="#{topicId eq -1}"><br/></ui:fragment>
    </ui:repeat>
</ul>

替代物有:rel=“nofollow noreferer”><h:panelGroup>

<h:panelGroup rendered="#{topicId eq -1}"><br/></h:panelGroup>

或您的具体案例:<h:outputText independence=“false”>

<h:outputText value="&lt;br/&gt;" escape="false" rendered="#{topicId eq -1}" />

两者在未具体说明客户的属性时,也并不影响超文本产出。

See also:


<>Unrelated to the specific problem, that swrong 网址:<br/>。 任何网络浏览器如果尊重超文本规格,将不予考虑。 页: 1 <代码><li>? 或者说得更好,请上<条码>。

问题回答

暂无回答




相关问题
JSF a4j:support with h:selectManyCheckbox

I m having trouble with a JSF selectManyCheckbox and A4J support. The purpose is to run some action when a checkbox is selected. This works perfectly in Firefox. Yet, when testing in any IE (ie6 / ie7 ...

Mojarra for JSF Encoding

Can anyone teach me how to use mojarra to encode my JSF files. I downloaded mojarra and expected some kind of jar but what i had downloaded was a folder of files i don t know what to do with

如何拦截要求终止?

在共同基金中,如果用户要求终止,就需要采取一些行动。 我需要某种拦截器,但我不知道如何这样做。 我需要帮助。 增 编

ICEFaces inputFile getting the file content without upload

Is there any way of just getting the content of the browsed file without any upload/file transfer operations? I currently use ICEFaces inputFile component but I do not need the default uploading ...

Weird behaviour of h:commandLink action (MethodExpression)

I have two JSPs where I am displaying some info from database in a h:dataTable. One of them is showing all the info, and one of them user specifically. I have showXML.jsp that shows the "XML" column ...

How to correctly use ResultSet with h:dataTable

The problem is, that after displaying the ResultSet with <h:dataTable>, the connection is left open. If I close it, it closes the ResultSet too. I m thinking about copying the ResultSet data ...

热门标签