Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
大家好,我想在同一个视图中使用两个丰富的排序列表,其中一个带有控制按钮,另一个没有它们。
我设法通过介绍将它们隐藏在全球范围内:
<h:outputStylesheet> .rf-ord-btn{display:none;} </h:outputStylesheet>
在我表格的开头。
但是随后所有列表的按钮都被隐藏了......
将重新样式限制在我的列表中的正确方法是什么?
感谢帮助
使用styleClass属性。
styleClass
<rich:orderingList styleClass="list-with-hidden-buttons">
然后更改规则以仅涵盖该列表
.list-with-hidden-buttons .rf-ord-btn { display:none; }