.rowRemove()

Previous Next

Removes records from the client browser. Use this function to remove/hide records in the client screen without having to check at the server if this is possible or not. Contrast with Rows.rowDelete() which deletes records from the database.

Syntax

.rowRemove( options )

 

options   ::=  {

     check:  check-function

,    success: success-function

,    error: error-function

}

Options is a struct that can have the following items, all of which are optional.

Check-function is a function called before the records are deleted. Use the return value of this function to determine whether or not you want the rows to be removed.

Success-function is a function called after the records are successfully removed.

Error-function is a function called if an error occurs.

 

See Also

.rowDelete()