Also you will be getting errors when you submit (probably index out of bounds exception) because your intial String[] isn't large enough. I think if you use a LazyList things will be easier. If you use indexed properties for a String[] things are going to become more tricky (although I think there might a lazy array type also).


Rick Reumann wrote the following on 4/5/2005 11:08 AM:
Stéphane Zuckerman wrote the following on 4/5/2005 11:06 AM:

            f.innerHMTL +=
                          "<input type='text' " +
                          "name='persons["+i+"]name' />";
            // ... and the same for fname and email ...


What's the error you are getting? I haven't looked at everything but the above "name='persons["+i+"]name' />" should be
"name='persons["+i+"].name' />"





--
Rick

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to