Changes between Version 16 and Version 17 of BluePrint/MultiStepForms


Ignore:
Timestamp:
04/29/13 07:21:15 (11 years ago)
Author:
hardik juneja
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BluePrint/MultiStepForms

    v16 v17  
    8888* Wizard generator will convert the given data into desired wizard template.
    8989
     90The defined data data structure will be of the following format -
     91[[BR]]
     92[[BR]]
     93
     94{{{
     95
     96#General way to define data is
     97#node = S3SQLWizardForm("Table Name", "Description", **Fields Names)
     98
     99#defining first step
     100node1 = S3SQLWizardForm("pr_person", "required", "first_name", "last_name", "gender", "date_of_birth")
     101
     102#defining other step
     103node2 = S3SQLWizardForm("pr_person", "optional", "phone", "email")
     104
     105}}}
    90106==== As User ====
    91107