Table.setRowDeletedByUser

Sets the deleted by the user status for the current row (see #getCurrentRow()). Note that the deleted by the user status is removed when #updateTable() is called.

The deleted by the user status can be displayed to the user by adding a delete column checkbox to a Table Control.

Javascript example:

 var orders = tables.ORDERS;
 var rows = orders.getRows();
 while (rows.next())
 {
   orders.setRowDeletedByUser(false);
 }
 

Parameters

boolean  deleted,