我正在使用rich faces 4.1.0,我确实想定制rich:dataScroller。我尝试了下面的方法,但是标签仍然显示为<<<<和<<。任何人都知道解决这个问题的办法
谢谢!
<rich:dataScroller maxPages="20">
<f:facet name="first">
<h:outputText value="First"/>
</f:facet>
<f:facet name="last">
<h:outputText value="Last"/>
</f:facet>
<f:facet name="next">
<h:outputText value="Next"/>
</f:facet>
<f:facet name="previous">
<h:outputText value="Previous"/>
</f:facet>
</rich:dataScroller>发布于 2013-06-14 15:41:34
rich:dataScroller将fastControls作为其属性之一,这有助于实现这一点。
The attribute specifies the visibility of fastControls. Possible values are: "show"
(controls are always visible ). "hide" (controls are hidden. "auto" (unnecessary controls
are hidden). Default value is "show".可以在rich:dataScroller docs中找到对此的解释。另请参阅
https://stackoverflow.com/questions/17101871
复制相似问题