Table.isRowInserted

Returns true if the specified row has been inserted. Throws an IllegalArgumentException if row is not a valid row number. Note that the inserted status is removed when #updateTable() is called.

Javascript example:

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

returns boolean

Parameters

int  row,