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.
我对 RichFaces 4 有疑问:我无法在 RichFaces 4 中给出列宽的百分比值,它被简单地忽略了。如果我将宽度设置为 em 或 px,它可以工作。
这是我尝试的丰富:列:
<rich:extendedDataTable ... > <rich:column width="20%" ...> <!-- width 20% is ignored --> </rich:column> </<rich:extendedDataTable>
提前致谢。
尝试使用 style 属性和 Richface 标签,如 <rich:column style="width:100%;"/>. 这应该有效,否则使用columnClass 或 styleClass属性并在您的 css 部分中提供相同的样式信息。
<rich:column style="width:100%;"/>
如果没有任何效果,请尝试以像素为单位给出宽度大小。