On 8/30/05, Kevin Galligan <[EMAIL PROTECTED]> wrote: > I think updating several rows at the same time, which might require > local copies of the data, and just linking are two different things. > They might need two different components.
With Struts this was a piece of cake. Your ActionForm has a bean property that is a List of the objects you want to update (Helps if it's a LazyList if not using session scope), and when your form submits BeanUtils (in the background) simply copies your form objects to the List in the Action form. Super simple imo. The only slightly tricky part is validation, but I always provide a manual validation method in my Action classes so this was easy to handle.

