I'm using seam 2.3 with jboss AS 7 and i want to resize rows in rich extendedDataTable. I see the inputTextarea like a classic inpuText.In many forum, people says that we have to change the css. I have had this css but in dont see any change...
<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>
with
<rich:extendedDataTable styleClass="autoSizeRows" id="table" selectionMode="multiple"
value="#{BeanList.resultList}" rows="20"
var="_bean" frozenColumns="2"
selection="#{ClassAction.selection}" >
Thx !
height: 100%
doesn't really do anything for table cells. Just use a specific value - height: 30px
.