Generate a sequence of checkbox elements, as a String.
The checkboxes will all have the same name
attribute. Each
checkbox is followed by a label. There will be one checkbox for each value.
Each value can be specified as a String, which will be used both as the
value of the VALUE attribute and as the label for that checkbox. A
single-element array has the same effect.
Each value can also be specified as a three-element array. The first element is the VALUE attribute; the second is the label; and the third is a boolean specifying whether this checkbox is CHECKED.
Each value can also be specified as a two-element array, by omitting either the value element (defaults to the same as the label), or the boolean checked element (defaults to false).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | checkbox_group( "name" , "foo" , "bar" , "baz" ) # <INPUT TYPE="checkbox" NAME="name" VALUE="foo">foo # <INPUT TYPE="checkbox" NAME="name" VALUE="bar">bar # <INPUT TYPE="checkbox" NAME="name" VALUE="baz">baz checkbox_group( "name" , [ "foo" ], [ "bar" , true ], "baz" ) # <INPUT TYPE="checkbox" NAME="name" VALUE="foo">foo # <INPUT TYPE="checkbox" CHECKED NAME="name" VALUE="bar">bar # <INPUT TYPE="checkbox" NAME="name" VALUE="baz">baz checkbox_group( "name" , [ "1" , "Foo" ], [ "2" , "Bar" , true ], "Baz" ) # <INPUT TYPE="checkbox" NAME="name" VALUE="1">Foo # <INPUT TYPE="checkbox" CHECKED NAME="name" VALUE="2">Bar # <INPUT TYPE="checkbox" NAME="name" VALUE="Baz">Baz checkbox_group( "NAME" => "name" , "VALUES" => [ "foo" , "bar" , "baz" ]) checkbox_group( "NAME" => "name" , "VALUES" => [[ "foo" ], [ "bar" , true ], "baz" ]) checkbox_group( "NAME" => "name" , "VALUES" => [[ "1" , "Foo" ], [ "2" , "Bar" , true ], "Baz" ]) |
Please login to continue.