我使用了带有jboss AS 7的seam 2.3,我希望在rich extendedDataTable中调整行的大小。 我看到inputTextarea就像一个经典的inpuText。在很多论坛上,人们说我们必须改变css。我有这个css但是没有看到任何变化...
<style type="css">
.autoSizeRows .rf-edt-hdr-c{
border-right:none !important;
border-bottom:none !important;
}
.autoSizeRows .rf-edt-c{
height: 100% !important;
border-right:none !important;
border-bottom:none !important;
}
.autoSizeRows .rf-edt-cnt td {
border-bottom: 1px solid #9FC0E9;
border-right: 1px solid #9FC0E9;
}
</style>
带
<rich:extendedDataTable styleClass="autoSizeRows" id="table" selectionMode="multiple"
value="#{BeanList.resultList}" rows="20"
var="_bean" frozenColumns="2"
selection="#{ClassAction.selection}" >
Thx!
答案 0 :(得分:0)
height: 100%
对表格单元格没有任何作用。只需使用特定值 - height: 30px
。