in reply to Re: javascript through template toolkit to catalyst
in thread javascript through template toolkit to catalyst
then I have this in my actual html area:for(m=0;m<selected.length;m++){ document.form.values.value += selected[m].name+','; }
and then in my catalyst controller ( which is agg.pm with submit as the method) :<form method="post" name="form" action=" [% Catalyst.uri_for('/agg/su +bmit') %] "> <INPUT TYPE="hidden" NAME="values">
from here i can parse the string into an array and proceed with my program.my $selected = $c->request->params->{values};
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: javascript through template toolkit to catalyst
by Anonymous Monk on Apr 01, 2009 at 06:10 UTC |