Parameter | Description |
---|---|
sCurrentRowID | [ToDo: In Progress] |
Function OnDeleteRow String sCurrentRowID Returns Boolean
The OnDeleteRow event is triggered when the grid receives a Request_Delete. Usually, this is the result of a user-initiated row deletion. Implement this event to perform a custom delete row action.
In a data-aware grid (pbDataAware = True), OnDeleteRow is triggered before the DataDictionary delete operation. If OnDeleteRow returns False, then the data dictionary delete operation is not performed.
In a non-data-aware grid (pbDataAware = False), use OnDeleteRow as your programming hook to perform the desired delete row action.