644645646647648649650651652653654
if ( cell.getRowSpan() > 0 ) { Coordinate hc = cell.getHtmlCoordinate(); TableRowElement tre = tbody.getRows().getItem( hc.getRow() ); TableCellElement tce = tre.getCells().getItem( hc.getCol() ); tre.removeChild( tce ); } } } @Override
100101102103104105106107108109110