diff options
author | ivan <ivan> | 2002-04-19 22:04:19 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-04-19 22:04:19 +0000 |
commit | 5d8d48f88e0ba23b3cb988bf9aa913b2afae8d91 (patch) | |
tree | bb8ceae6b8274b738e5183c7d4815ffeeecc42ac | |
parent | 648754131458fe53c7ac041b8b3ad8aa5e968dd9 (diff) |
form_select
-rw-r--r-- | Changes | 3 | ||||
-rw-r--r-- | SelectLayers.pm | 15 |
2 files changed, 12 insertions, 6 deletions
@@ -1,5 +1,8 @@ Revision history for Perl extension HTML::Widgets::SelectLayers. +0.02 unreleased + - enable form_select + 0.01 Thu Mar 7 04:36:46 2002 - original version; created by h2xs 1.21 with options -A -X -n HTML::Widgets::SelectLayers diff --git a/SelectLayers.pm b/SelectLayers.pm index 7e5bbc8..58e1700 100644 --- a/SelectLayers.pm +++ b/SelectLayers.pm @@ -3,7 +3,7 @@ package HTML::Widgets::SelectLayers; use strict; use vars qw($VERSION); -$VERSION = '0.01'; +$VERSION = '0.02'; =head1 NAME @@ -87,11 +87,12 @@ form_text - (optional) Array reference of text (or hidden) form fields to copy form_checkbox - (optional) Array reference of checkbox form fields to copy from the B<form_name> form. +form_select - (optional) Array reference of select (not select multiple) form + fields to copy from the B<form_name> form. + fixup_callback - (optional) subroutine reference, returns supplimentary JavaScript for the function described above under FORMS. -#form_select - size - (optional) size of the E<lt>SELECTE<gt>, default 1. unique_key - (optional) prepended to all JavaScript function/variable/object @@ -191,6 +192,8 @@ sub _fixup { exists($self->{form_text}) ? $self->{form_text} : []; my $form_checkbox = exists($self->{form_checkbox}) ? $self->{form_checkbox} : []; + my $form_select = + exists($self->{form_select}) ? $self->{form_select} : []; my $html = " <SCRIPT> function ${key}fchanged(what) { @@ -209,9 +212,9 @@ sub _fixup { what.$f.value = '';\n" } -# foreach my $f ( @$form_select ) { -# $html .= "what.$f.value = document.$form_name.$f.options[document.$form_name.$f.selectedIndex].value;\n"; -# } + foreach my $f ( @$form_select ) { + $html .= "what.$f.value = document.$form_name.$f.options[document.$form_name.$f.selectedIndex].value;\n"; + } $html .= &{$self->{fixup_callback}}() if exists($self->{fixup_callback}); |