Hi Carl
I am trying to give a name to each radio buttons in a radiogroup,
but so far the name is still not assigned to each radio button, here is
what I do:
$self->options( [ map { {
name => 'copyright',
label => $_->description,
value => $_->status_id }
} $status->all ] );
return $self;
Am I doing right?
Ke Wei