* @param rowIndex the index of the row from which the cell will be deleted
* @param cellIndex the index of the cell to be deleted
*/
public void deleteCell(int rowIndex, int cellIndex) {
TableRowElement tr = tbody.getRows().getItem(rowIndex);
tr.deleteCell(cellIndex);
}
/**
* Deletes an existing row from the table.
*