Form inheritance work for lists, removal of $session{os}{slash}

This commit is contained in:
Colin Kuskie 2005-12-01 20:46:55 +00:00
parent abe85d439e
commit 99df1f414e
90 changed files with 1364 additions and 1168 deletions

View file

@ -15,7 +15,7 @@ package WebGUI::Form::Combo;
=cut
use strict;
use base 'WebGUI::Form::SelectList';
use base 'WebGUI::Form::SelectBox';
use WebGUI::Form::Text;
use WebGUI::International;
use WebGUI::Session;
@ -30,7 +30,7 @@ Creates a select list merged with a text box form control.
=head1 SEE ALSO
This is a subclass of WebGUI::Form::SelectList.
This is a subclass of WebGUI::Form::SelectBox.
=head1 METHODS
@ -59,6 +59,9 @@ sub definition {
my $class = shift;
my $definition = shift || [];
push(@{$definition}, {
formName=>{
defaultValue=>WebGUI::International::get("combobox","WebGUI")
},
profileEnabled=>{
defaultValue=>1
}
@ -66,19 +69,6 @@ sub definition {
return $class->SUPER::definition($definition);
}
#-------------------------------------------------------------------
=head2 getName ()
Returns the human readable name or type of this form control.
=cut
sub getName {
return WebGUI::International::get("combobox","WebGUI");
}
#-------------------------------------------------------------------
=head2 getValueFromPost ( )