Lines Matching defs:hidden
242 ':form'=>[qw/textfield textarea filefield password_field hidden checkbox checkbox_group
2748 #### Method: hidden
2750 # $name -> Name of the hidden field
2755 # A string containing a <input type="hidden" name="name" value="value">
2757 'hidden' => <<'END_OF_FUNC',
2758 sub hidden {
2785 push @result,$XHTML ? qq(<input type="hidden" name="$name" value="$_" @other />)
2786 : qq(<input type="hidden" name="$name" value="$_" @other>);
3520 return $self->CGI::hidden('-name'=>'.cgifields',
6925 print hidden(-name=>'hidden_name',
6930 print hidden('hidden_name','value1','value2'...);
6932 hidden() produces a text field that can't be seen by the user. It
6953 Fetch the value of a hidden field this way:
6958 hidden field is "sticky". If you want to replace a hidden field with
8095 print hidden('Reference','Monty Python and the Holy Grail');