Table.isRowEmpty

Returns true if the specified row is marked as empty. Throws an IllegalArgumentException if row is not a valid row number.

A row is marked as empty when:

Rows marked as empty are ignored by the #updateTable() method.

Javascript example:

 if (orders.isRowEmpty(rowNum))
 {
    ..
 }
 

returns boolean

Parameters

int  row,