CellTable GWT doesn't show with a correctly height

216 Views Asked by At

I've created a CellTable and works correctly but when I try to insert a new row with no element or white spaces looks like this.

enter image description here

Thanks in advance.

3

There are 3 best solutions below

0
On BEST ANSWER

If you just insert empty rows, height will be smaller than other rows. Use CSSResource and style the tr with proper height.

0
On

When you insert an empty row, try inserting an HTML space inside it to initialize the height. Like  

0
On

Yes, thanks Abhijith Nagaraja. This is how my css looks now.

    .cellTable tbody td{
        height: 13px;
    }

Thanks a lot.