我在 jboss AS 7 中使用 seam 2.3,我想在丰富的扩展数据表中调整行的大小。我看到 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}" >
谢谢 !