Lines Matching refs:label

239                             ins label legend noframes noscript object optgroup Q 
2156 my($label,$value,$script,$tabindex,@other) = rearrange([NAME,[VALUE,LABEL],
2159 $label=$self->_maybe_escapeHTML($label);
2166 $name = qq/ name="$label"/ if $label;
2167 $value = $value || $label;
2183 # $value -> (optional) Value of the button when selected (also doubles as label).
2184 # $label -> (optional) Label printed on the button(also doubles as the value).
2192 my($label,$value,$tabindex,@other) = rearrange([NAME,[VALUE,LABEL],TABINDEX],@p);
2194 $label=$self->_maybe_escapeHTML($label);
2198 $name = qq/name="$label" / if defined($label);
2199 $value = defined($value) ? $value : $label;
2220 my($label,$value,$tabindex,@other) = rearrange(['NAME',['VALUE','LABEL'],TABINDEX],@p);
2221 $label=$self->_maybe_escapeHTML($label);
2224 $name = qq/ name="$label"/ if defined($label);
2225 $value = defined($value) ? $value : $label;
2251 my($label,$tabindex,@other) = rearrange([[NAME,VALUE],TABINDEX],@p);
2253 $label=$self->_maybe_escapeHTML($label,1);
2254 $label = $label || "Defaults";
2255 my($value) = qq/ value="$label"/;
2281 # $label -> (optional) a user-readable label printed next to the box.
2290 my($name,$checked,$value,$label,$labelattributes,$override,$tabindex,@other) =
2302 my($the_label) = defined $label ? $label : $name;
2309 return $XHTML ? CGI::label($labelattributes,
2427 # in the form $label{'value'}="Long explanatory label".
2455 # in the form $label{'value'}="Long explanatory label".
2527 my($label)='';
2529 $label = $_;
2530 $label = $labels->{$_} if defined($labels) && defined($labels->{$_});
2531 $label = $self->_maybe_escapeHTML($label,1);
2532 $label = "<span style=\"color:gray\">$label</span>" if $disabled{$_};
2540 CGI::label($labelattributes,
2541 qq(<input type="$box_type" name="$name" value="$_" $checkit$other$tab$attribs$disable/>$label)).${break};
2543 push(@elements,qq/<input type="$box_type" name="$name" value="$_" $checkit$other$tab$attribs$disable>${label}${break}/);
2563 # in the form $label{'value'}="Long explanatory label".
2605 my($label) = $_;
2606 $label = $labels->{$_} if defined($labels) && defined($labels->{$_});
2608 $label = $self->_maybe_escapeHTML($label,1);
2609 $result .= "<option${attribs} ${selectit}value=\"$value\">$label</option>\n";
2627 # in the form $label{'value'}="Long explanatory label".
2630 # A true value indicates the value should be used as the label attribute
2632 # The label attribute specifies the option label presented to the user.
2633 # This defaults to the content of the <option> element, but the label
2652 $result = qq/<optgroup label="$name"$other>\n/;
2663 my($label) = $_;
2664 $label = $labels->{$_} if defined($labels) && defined($labels->{$_});
2665 $label=$self->_maybe_escapeHTML($label);
2667 $result .= $labeled ? $novals ? "<option$attribs label=\"$value\">$label</option>\n"
2668 : "<option$attribs label=\"$value\" value=\"$value\">$label</option>\n"
2669 : $novals ? "<option$attribs>$label</option>\n"
2670 : "<option$attribs value=\"$value\">$label</option>\n";
2694 # in the form $label{'value'}="Long explanatory label".
2733 my($label) = $_;
2734 $label = $labels->{$_} if defined($labels) && defined($labels->{$_});
2736 $label = $self->_maybe_escapeHTML($label,1);
2737 $result .= "<option${attribs} ${selectit}value=\"$value\">$label</option>\n";
5931 "<CLICK ME>" as the label for a button. However, it also interferes with
6429 want to use different values for the user-visible label inside the
6433 default. (You can also leave a label undefined if you want to).
6477 The required first argument (B<-name>) is the label attribute of the
6502 and indicates that the values should be used as the label attribute
6689 attached to the <label> element that surrounds each button.
6709 -label=>'CLICK ME');
6725 will also be used for the user-readable label printed next to the
6741 The optional fourth parameter (-label) is the user-readable label to
6849 attached to the <label> element that surrounds each button.
6889 name will also be used as the user-visible label.
6893 You can use -label as an alias for -value. I always get confused
6894 about which of -name and -value changes the user-visible label on the
7005 -value=>'user visible label',