How can i make the height of the row and the header fixed when the height of the cellTable is fixed e.g 200px?
In my case, the header and the row are automatically re-sized every time a content is added or removed.
I’ve defined my CSS like this:
.cellTableHeader {
border-bottom: 2px solid #6f7277;
padding: 3px 15px;
text-align: left;
color: #4b4a4a;
text-shadow: #ddf 1px 1px 0;
overflow: hidden;
height: 25px;
}
.cellTableCell {
padding: 4px;
overflow: hidden;
font-size: 10px;
font-family: ARIAL;
height: 25px;
}
.cellTableEvenRow {
background: #ffffff;
height: 25px;
}
.cellTableOddRow {
background: #f3f7fb;
height: 25px;
}
I’ve also tried the cellTable#setColumnWith().
Any idea ?

[1]: https://i.stack.imgur.com/Vd2Hp.png ![enter image description here][1]
Ok, may be my question wasn’t well asked at the first place 🙁 but I’ve resolve my problem.
What i intended to do is to have a fixed table( with surrounding) where i can place my items without having the change on the numbers of the elements effecting the display of the table itself. So, to have that behavior, i didn’t set a fixed height on the cell table (since that doesn’t work) but I’ve put the hole table in a vertical panel with defined boder-style and manage the display of the cellTable with its css.
CSS
Table CSS
Voila !
I hope, it will help someone out there.