OnSave Event
Occurs when a data-bound Grid control is saved
Syntax:
OnSave <ActionProcedure>
Properties Available For OnSave Procedure:
- This.AppendBuffer
- This.EditBuffer
- This.MarkBuffer
- This.EditBuffer: Array of one element per edited cell. The elements has the following structure: { nLogicalRow , nLogicalCol , xValue , nRecNo }
- This.AppendBuffer: Array of one element per appended record. The elements has the following structure: { xFieldValue 1 , ... , xFieldValue n }
- This.MarkBuffer: Array of one element per record marked to be deleted or recalled. The elements has the following structure: { nLogicalRow , nRecNo , cMark ( 'D' or 'R' ) }
Note: When an action procedure is specified for this eventt, the default one is not executed.