Subversion Repositories wimsdev

Rev

Rev 11292 | Rev 16291 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
32 reyssat 1
!! +exec+ +html+
14279 obado 2
!goto end
11212 bpr 3
tit:formcheckbox
11210 bpr 4
type:$type_exec
11220 bpr 5
alias:htmlcheckbox
11292 bpr 6
syntax:!formcheckbox ``name'' from ``n1'' to ``n2'' prompt ``promptlist''\
7
!formcheckbox ``name'' list ``selectlist'' prompt ``promptlist''
9291 obado 8
 
11210 bpr 9
mean:Creates a checkbox list menu under a previously defined html form. <br/>\
10
  This command speeds up the creation of checkboxed menus, as well as simplifies\
11292 bpr 11
  the source files. In the parameters, ``name'' defines the name field of the menu, \
12
  and the values of the menu are either integers going from ``n1'' to ``n2'' (in the first syntax),\
13
  or items in the list ``selectlist''. <br/>\
14
  The optional parameter ``promptlist'' can be used to generate\
15
  user prompts for each items in the list. If ``promptlist'' is\
16
  empty or is shorter than ``selectlist'', the undefined prompts\
11210 bpr 17
  will be replaced by the value. If it is longer, the rest will be ignored.\
18
  <br/>\
11292 bpr 19
  An ``id'' is created automatically, except if the variable\
20
  ``wims_ref_id'' is specified just before. If the variable\
21
  ``wims_html_mode'' has a value as ``div'', ``li'', ``td'', the different items of\
11210 bpr 22
  the html form will be in the corresponding html environmment. If the\
11292 bpr 23
  variable ``wims_ref_class'' is non empty, the class of this html environment is the value \
11210 bpr 24
  of this variable. The default of the menu will be the current value of the variable\
11292 bpr 25
  ``&#36;name''.
9291 obado 26
 
14279 obado 27
sample:see below
28
:end
29
<tr>
30
  <td><code>!formcheckbox varCHK1 from 1 to 3 prompt txt1,txt2,txt3</code></td>
31
  <td>
32
    !formcheckbox varCHK1 from 1 to 3 prompt txt1,txt2,txt3
33
  </td>
34
</tr>
35
<tr>
36
  <td><code>!formcheckbox varCHK2 list a,b,c prompt txtA,txtB,txtC</code></td>
37
  <td>
38
    !formcheckbox varCHK2 list a,b,c prompt txtA,txtB,txtC
39
  </td>
40
</tr>
41
<tr>
42
  <td><code>&lt;ol&gt;<br/>!set wims_html_mode=li
43
  <br/>!formcheckbox varCHK3 list apple,pear prompt &amp;#x1f34e;,&amp;#x1f350;
44
  <br/>&lt;/ol&gt;</code></td>
45
  <td>
46
    <ol>
47
    !set wims_html_mode=li
48
    !formcheckbox varCHK3 list apple,pear prompt &#x1f34e;,&#x1f350;
49
    </ol>
50
  </td>
51
</tr>
52