Form/* now all use getOriginalValue and getDefaultValue. This resolves the Layout bug where all the check lists could not be unchecked. Tests were updated, but still need a major overhaul.
This commit is contained in:
parent
96b7047d22
commit
173c2a12cd
42 changed files with 173 additions and 76 deletions
|
|
@ -119,7 +119,7 @@ Shows either Yes or No.
|
|||
sub getValueAsHtml {
|
||||
my $self = shift;
|
||||
my $i18n = WebGUI::International->new($self->session);
|
||||
if ($self->getDefaultValue) {
|
||||
if ($self->getOriginalValue) {
|
||||
return $i18n->get(138);
|
||||
}
|
||||
return $i18n->get(139);
|
||||
|
|
@ -149,7 +149,7 @@ sub toHtml {
|
|||
my $self = shift;
|
||||
my $i18n = WebGUI::International->new($self->session);
|
||||
my ($checkYes, $checkNo);
|
||||
if ($self->getDefaultValue) {
|
||||
if ($self->getOriginalValue) {
|
||||
$checkYes = 1;
|
||||
} else {
|
||||
$checkNo = 1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue