I was hoping that other people would start helping with the nested tags, but anyways.
Rest assured, your markup is fine (At least the part you provided :). It's easier to tell with nested tags. Less detail to worry about ;) Are there any errors, or is it just that the bean property isn't updating on the server?... Throw some System.out.println() messages into the bean's setter method to double check. The "name" text field updates fine?... Because this part of the markup is perfect, the problem would have to be with how the bean itself is managed. Any clean-up code may be destroying the bean, or possibly the bean may be bouncing in and out of scope. Try the above and get back to us. Arron. Sriram Nookala wrote: >I have the following code in my jsp within a <html:form> tag: > >Here attributeDefintionList is a collection of AttributeDefintion beans. >AttributeDefinition has a property type which itself is an AttributeType bean with a >property store. >The code I have doesn't seem to setting and getting store for AttributeType. >What am I missing here? >thanks, >sriram > > <nested:iterate property="attributeDefinitionList"> > <tr class="table_row_odd"> > <td class="table_cell"> > <nested:text property="name" /> > </td> > <td class="table_cell"> > <nested:nest property="type"> > <nested:text property="store"/> > </nested:nest> > </td> > </tr> > </nested:iterate> > > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

