slugger415 has asked for the wisdom of the Perl Monks concerning the following question:
This works fine when the form is first called; but once the user makes a few selections and clicks the submit button, all of the items where the user hadn't yet made a selection default to the first choice (c). Is there any way to prevent this from happening on subsequent submits? thank you, Scottforeach my $f (@files){ $query->radio_group(-name=>$f, -values=>['c','r','t','s'], -default=>'-'); } print $query->submit(-name=>'submit',-value=>'save');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How to get unselected radio_group() items after submitting form
by wind (Priest) on Mar 08, 2011 at 17:46 UTC | |
by slugger415 (Monk) on Mar 08, 2011 at 21:50 UTC | |
by wind (Priest) on Mar 09, 2011 at 04:18 UTC | |
|
Re: How to get unselected radio_group() items after submitting form
by wallisds (Beadle) on Mar 08, 2011 at 16:18 UTC | |
by slugger415 (Monk) on Mar 08, 2011 at 17:45 UTC | |
by wallisds (Beadle) on Mar 08, 2011 at 18:31 UTC |