Beefy Boxes and Bandwidth Generously Provided by pair Networks Joe
Keep It Simple, Stupid
 
PerlMonks  

Re^2: Assigning a value from JavaScript onSubmit in CGI

by rashley (Scribe)
on Nov 16, 2006 at 13:08 UTC ( [id://584549]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to Re: Assigning a value from JavaScript onSubmit in CGI
in thread Assigning a value from JavaScript onSubmit in CGI

Well, I put a Perl function call in the -onsubmit of this button and it got called.

I have an array reference. When my page gets created the CGI loops through the array and puts the values into Text boxes so they can be changed.

I have a JavaScript to dynamically add rows to this table.

When the form is submitted, I need to gather the current values and put them back in my array ref. Here's the code:

sub generateFlgNotes { my $cgi = shift; my $readonly = shift; my $attr = shift; my $attrHash = shift; my $value = $attrHash->{VALUE}; my $result; $result .= $cgi->start_table({-id=>'FlagNotesTable'}); foreach my $note (@$value) { $result .= $cgi->Tr({}, $cgi->td("<TextArea>$note</TextArea>")); } $result .= $cgi->end_table({}); my $addbutton = button(-name=>'AddFlagNote', -value=>'Add Flag Note', -onclick=>"return addNote('FlagNotesTable', '')", -onsubmit=>?????); $result .= $addbutton; return $result; }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://584549]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.