i've got a problem with figuring out how to accept multiple inputs
from the adp page and passing those values to be processed
individually in a corresponding .tcl page.
What i've done so far is dynamically create several fields where users
can input information to be stored into a table. It currently looks
like this
for {set i 1} {$i <= $num_of_fields} {incr i} {
append fields "
<input size=50 name=foo value='foo'>
<input size=50 name=foo_desc.$i value=@foo_desc.$i@>
"
where num_of_fields is the number the user sets which will dynamically
create the number of fields required for data entry. I have set foo to
be an array but i am not sure how to properly setup and utilise this
array(multirow?) and passing it to the tcl file to process each value.
The problem i have is trying to assign each field a unique variable
name and pass them through to another tcl file which will process
these inputs.
I don't think whatever i've done is at all correct. Could someone
direct me to the steps i should take in order to:
1) get a dynamic number of values from an adp page
2) pass these values to another tcl file for processing
Thanks
Request notifications