Changes between Version 19 and Version 20 of BluePrint/MultiStepForms
- Timestamp:
- 05/03/13 21:32:17 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BluePrint/MultiStepForms
v19 v20 107 107 {{{ 108 108 109 #General way to define datais109 #General way to define a node is 110 110 #node = S3SQLWizardForm("Table Name", "Description", **Fields Names) 111 111 … … 113 113 node1 = S3SQLWizardForm("pr_person", "required", "first_name", "last_name", "gender", "date_of_birth") 114 114 115 #defining otherstep115 #defining second step 116 116 node2 = S3SQLWizardForm("pr_person", "optional", "phone", "email") 117 117 118 #these nodes will be then passed to another function which will then decide the flow of the wizard. 118 #These nodes will be then passed to another function which will then decide the flow of the wizard. 119 #Example (Note - name of the function could be different ) - 120 121 S3CreateWizard(node1, node2, node3,....) 122 119 123 }}} 120 124