row height in split and row merge case

Hello,

I have grid with two columns on left. These two columns are fixed and dont have any other data.

When I merge cells in two rows (Right pane) , The first row gets the height twice the height than original.

It should be only for the that particular cell, right?



secondly when I try to get the cell height by



mygrid.cells(mygrid.getRowId(rowe),cole).cell.scrollHeight



It was coming much more than expected, where it dont have any data in it.

The first row gets the height twice the height than original. It should be only for the that particular cell, right?
It seems that you are using rowspans and multiline mode in the same time, which is not supported combination of modes.
In multiline mode grid will sync height of row in both left and right part, based on actual row height ( which can be increased because of rowspans ) - it can’t be fixed.

>>secondly when I try to get the cell height by
You are using correct code for access DOM property of cell element. Beware that table cells will have width and height value equal to existing size of cell, event if there is no any real content inside the cell