Every cell contains a form element (i.e. input type="text"), and then using indexed properties, they're submitted just like a regular form. Validation is done in the "validate()" method of the form, as usual.
Matt -----Original Message----- From: Erik Price [mailto:[EMAIL PROTECTED] Sent: Friday, July 18, 2003 11:29 AM To: Struts Users Mailing List Subject: Re: [Friday] How far can we let the clients push us? Raible, Matt wrote: > We had the same requirement from our client - and we actually implemented > it! Using JavaScript and the DOM, we're able to add/delete rows, sort by > columns, have tabs for different sheets - pretty slick IMO. That is cool. DOM is unwieldy, but it's an incredibly powerful mechanism in web pages -- it really does add a ton of control. What I'm curious, though, is what was done with this data after the users had entered it into the spreadsheet -- was every single cell a form field, or did you implode the cells into a big string and ship that to the server? Erik --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

