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>