checking _model_has_value
edenc [Wed, 30 Jan 2008 21:14:42 +0000 (21:14 +0000)]
lib/Reaction/UI/ViewPort/Field/Mutable/ChooseMany.pm

index ba1de50..f799160 100644 (file)
@@ -35,6 +35,7 @@ class ChooseMany is 'Reaction::UI::ViewPort::Field', which {
 
   implements is_current_value => as {
     my ($self, $check_value) = @_;
+    return $self->_model_has_value;
     my @our_values = @{$self->value || []};
     $check_value = $self->obj_to_str($check_value) if ref($check_value);
     return grep { $self->obj_to_str($_) eq $check_value } @our_values;