CustomCommandPrecondition Enumeration
Namespace: Firefly.BoxAssembly: Firefly.Box (in Firefly.Box.dll) Version: debug-master-v:33791
public enum CustomCommandPrecondition
Public Enumeration CustomCommandPrecondition
type CustomCommandPrecondition
| None | 0 |
Nothing
|
| SaveControlDataToColumn | 1 |
Saves the current control's data to the column
|
| LeaveControl | 2 |
Leave the current control and make sure that the column is updated with the current data in the control.
After the handler is Executed return to the current control.
|
| LeaveRow | 3 |
Leave the current row and make sure that the Database is updated with it's current values.
after the handler is Executed return to the current row.
|
| LeaveRowAndSaveToDatabaseAfterHandlerInvokation | 4 |
Leave the current control, perform the SavingRow event, and the perform the handler.
After the handler is executed the row is saved to the database, and reEnters.
|