GridSave function can be used to execute all associated commands configured, except type “select” commands. To override, use command names as optional parameters. This is a sync function, so this will NOT trigger the “ExecuteComplete” rule.
Syntax:GridSave(DynamicGridControlName,Parameters)
where
DynamicGridControlName : DynamicGrid Control’s Name.
Parameters : Name of commands separated by coma.Examples:
Example:
GridSave(DgStudent,Insert,Update). Execution will be on the basis of given order of the commands. Here Insert command configured will be executed first and then Update.
GridSave(DgStudent,Insert)