8 Deals with the representation of hidden fields on editable forms. The hidden field itself is of course not editable -- the editable in the name just means that it will be rendered on an editable form.
10 For more information, see L<CXGN::Page::Form>.
14 Lukas Mueller (lam87@cornell.edu)
18 The following functions are overridden from the parent class CXGN::Page::Form::Hidden which itself implements the CXGN::Page::Form::ElementI interface.
23 use CXGN
::Page
::Form
::Hidden
;
25 package CXGN
::Page
::Form
::EditableHidden
;
27 use base qw
/ CXGN::Page::Form::Hidden /;
42 my $self = $class->SUPER::new
(@_);
61 my $id = $self->get_id();
62 my $name = $self->get_field_name();
63 my $value = $self->get_contents();
65 my $s = qq { <input type
="hidden" id
="$id" name
="$name" value
="$value" /> };