template::wizard::create (public)
template::wizard::create [ args... ]
Defined in packages/acs-templating/tcl/wizard-procs.tcl
example: template::wizard create -action "wizard" -name my_wizard -params { my_param1 my_param2 } -steps { 1 -label "Step 1" -url "step1" 2 -label "Step 2" -url "step2" 3 -label "Step 3" -url "step3" }
- action - the url where the wizard will always submit, normally is the same as your current wizard file. Has no effect for subwizards.
- name - use to distinguish between the different wizards, since you can have 1 or more subwizard. "name" must be a bare Tcl word (no spaces etc.)
- params - are used to keep values that you would like to pass on to the other steps
- steps - are used to define what includes to use for each step of the wizard
- See Also:
- Partial Call Graph (max 5 caller/called nodes):
- Testcases:
- No testcase defined.