在 JSF 中使用 ui:repeat 循环时显示行索引
我正在使用 ui:repeat 标签,并且设置了 varstatus="current"。我尝试使用以下命令显示行索引,但没有显示任何内容。
<h:outputText value="#{current.index}"/>
我想显示行索引。
I am using ui:repeat tag and I have set varstatus="current".I try to display the row index using the below command, but nothing is getting displayed.
<h:outputText value="#{current.index}"/>
I would like to display the row index.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它是在 Facelets 2.x< 中引入的/a>.鉴于它不起作用的事实,您正在使用 Facelets 1.x。
Facelets 2.x 不是独立可用的。它嵌入在 JSF 2.x 中。如果可以,请升级到 JSF 2.x。如果不能,那么您要么将模型包装在也包含索引的自定义模型中,要么获取
(如果您的视图标记允许)(它是视图构建时间标记,而不是视图渲染时间标记),或者获取 Tomahawk 的
具有用于此目的的rowIndexVar
属性。更新根据评论,您原来使用的是 RichFaces。在这种情况下,您还可以使用
或
它提供了 rowKeyVar 属性:It was introduced in Facelets 2.x. Given the fact that it doesn't work, you're using Facelets 1.x.
Facelets 2.x is not standalone available. It is embedded in JSF 2.x. If you can, upgrade to JSF 2.x. If you can't, then you've either to wrap the model in a custom model which holds the index as well, or to grab
<c:forEach>
instead if your view markup allows it (it's a view build time tag, not a view render time tag), or to grab Tomahawk's<t:dataList>
instead which has arowIndexVar
attribute for this purpose.Update as per the comments, you turn out to be using RichFaces. In that case, you can also use the
<rich:dataList>
or<a4j:repeat>
which offers both arowKeyVar
attribute: