Table.isRowModified

Returns true if the specified row has been modified. Throws an IllegalArgumentException if row is not a valid row number. Note that inserted or deleted rows will always return false.

Javascript example:

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

returns boolean

Parameters

int  row,