Rev 17228 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
32 | reyssat | 1 | !! +exec+ +html+ |
11210 | bpr | 2 | tit:formselect |
3 | type:$type_exec |
||
11220 | bpr | 4 | alias:htmlselect |
11427 | bpr | 5 | syntax:!formselect ``name'' from ``n1'' to ``n2'' prompt ``promptlist''\ |
6 | !formselect ``name'' list ``selectlist'' prompt ``promptlist'' |
||
17228 | bpr | 7 | mean:Creates a select menu under a previously defined html form. <br>\ |
11210 | bpr | 8 | This command speeds up the creation of select menus, as well as simplifies\ |
18225 | bpr | 9 | the source files (limited to MAX_MENU_ITEMS). In the parameters, ``name'' defines the name field of the menu, \ |
11427 | bpr | 10 | and the values of the menu are either integers going from ``n1'' to ``n2'' (in the first syntax),\ |
17228 | bpr | 11 | or items in the list ``selectlist''. <br>\ |
11427 | bpr | 12 | The optional parameter ``promptlist'' can be used to generate user prompts for each items\ |
13 | in the list. If ``promptlist'' is empty or is shorter than ``selectlist'', the undefined prompts\ |
||
11210 | bpr | 14 | will be replaced by the value. If it is longer, the rest will be ignored.\ |
17228 | bpr | 15 | <br>\ |
16 | The default of the menu will be the current value of the variable ``$name''. <br>\ |
||
11427 | bpr | 17 | The variable ``$wims_formselect_switch'' may be used to set switches (for example by letting\ |
11210 | bpr | 18 | <span class="tt">wims_formselect_switch=multiple</span>, the selection will be multiple. |