Changes between Version 19 and Version 20 of BluePrint/MultiStepForms


Ignore:
Timestamp:
05/03/13 21:32:17 (12 years ago)
Author:
hardik juneja
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BluePrint/MultiStepForms

    v19 v20  
    107107{{{
    108108
    109 #General way to define data is
     109#General way to define a node is
    110110#node = S3SQLWizardForm("Table Name", "Description", **Fields Names)
    111111
     
    113113node1 = S3SQLWizardForm("pr_person", "required", "first_name", "last_name", "gender", "date_of_birth")
    114114
    115 #defining other step
     115#defining second step
    116116node2 = S3SQLWizardForm("pr_person", "optional", "phone", "email")
    117117
    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 
     121S3CreateWizard(node1, node2, node3,....)
     122
    119123}}}
    120124