IllegalArgumentException
row
A row can be marked as deleted by the user by:
Note that the deleted by the user status is removed when #updateTable() is called.
Javascript example:
if (tables.ORDERS.isRowDeletedByUser(rowNum)) { .. }
returns boolean
IllegalArgumentExceptionifrowis not a valid row number.A row can be marked as deleted by the user by:
- using the #setRowDeletedByUser(boolean) or #setRowDeletedByUser(int, boolean) method
- by the user when a delete column checkbox is included within a Table Control
Note that rows deleted using the #deleteRow() or #deleteRow(int) methods are not marked as deleted by the user.Note that the deleted by the user status is removed when #updateTable() is called.
Javascript example:
if (tables.ORDERS.isRowDeletedByUser(rowNum)) { .. }