yet another option on similar lines is to have display=none for a bunch of fields that are actually there in your HTML form and rendered via tapestry, but show up only when the user clicks on the button to add a row. ( of course that would mean that you cannot support "infinite" adds! )
On 12/14/06, Robert Zeigler <[EMAIL PROTECTED]> wrote:
One other way to do this is to have a (tapestry component) hidden form field (make sure "raw" is set to true). Then when you submit, you can use js to save the information from the js-added form fields into your hidden field, and parse it server-side. It would be much more /elegant /to have the js-helper functions that were mentioned, but... this is, at least, functional. :) Robert