jboss AS 7 で seam 2.3 を使用しており、豊富な 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}" >
どうも !