Lines Matching refs:checkbox

242 		':form'=>[qw/textfield textarea filefield password_field hidden checkbox checkbox_group 
2274 #### Method: checkbox
2275 # Create a checkbox that is not logically linked to any others.
2278 # $name -> Name of the checkbox
2280 # $value -> (optional) value of the checkbox, 'on' by default
2282 # Otherwise the checkbox name is used.
2284 # A string containing a <input type="checkbox"> field
2286 'checkbox' => <<'END_OF_FUNC',
2287 sub checkbox {
2310 qq{<input type="checkbox" name="$name" value="$value" $tabindex$checked$other/>$the_label})
2311 : qq{<input type="checkbox" name="$name" value="$value"$checked$other>$the_label};
2426 # A pointer to a hash of labels to print next to each checkbox
2444 # values for each checkbox in the group.
2446 # 1. If a pointer to a regular array of checkbox values,
2450 # value of a single checkbox in the group to turn on.
2454 # A pointer to a hash of labels to print next to each checkbox
2458 # An ARRAY containing a series of <input type="checkbox"> fields
2464 $self->_box_group('checkbox',@p);
2506 # for disabling groups of radio/checkbox buttons
2562 # A pointer to a hash of labels to print next to each checkbox
2693 # A pointer to a hash of labels to print next to each checkbox
6631 The first and second arguments are the checkbox name and values,
6654 relating the checkbox values to the user-visible labels that will be
6661 checkbox group formatted with the specified number of rows and
6665 The option B<-disabled> takes an array of checkbox values and disables
6706 print checkbox(-name=>'checkbox_name',
6713 print checkbox('checkbox_name','checked','ON','CLICK ME');
6715 checkbox() is used to create an isolated checkbox that isn't logically
6724 The first parameter is the required name for the checkbox (-name). It
6726 checkbox.
6730 The optional second parameter (-checked) specifies that the checkbox
6736 checkbox when it is checked. If not provided, the word "on" is
6742 be attached to the checkbox. If not provided, the checkbox name is
6747 The value of the checkbox can be retrieved using:
8075 print checkbox('Not my real name');