
|
The aim of these library elements is to provide a framework for developing process based applications.
ProcessForm is the outer most container for all other required elements such as ProcessBlock, ExecuteCommand, etc.
See the Process Elements
This framework can be used for any kind of processes such as Database Update, Mailing or Security Management, etc.
Here is the typical scenario:
| 1. | Place a ProcessForm into a page |
| 2. | Place a ProcessBlock into the ProcessForm |
| 3. | Place input fields as required (EditBox, CheckBox, ListBox, etc) |
| 4. | Define field validation parameters as required (Required, Is number, etc) |
| 5. | Depending on what you want to do, place Process Definition elements in the ProcessBlock. (Update Database, Create a user, send mail, etc) |
| 6. | Place an ExecuteCommand into the ProcessForm and select the Processes to execute. |
|