problem with indexed property
Hi,
Im using struts...
I have:
<logic iterate... name="myForm" property="myList" type="MyObj" indexId="i" id="object">
<html:text name="object" property="<%= "myList[" + i + "].id" %>" />
</logic:iterate>
And in myForm i have
public Object getMyList(int index) {
}
With these parameters, method getMyList isn't invoked, is invoked getMyList().
If i change so:
<html:text name="object" property="<%= "myListNew[" + i + "].id" %>" />
Method myListNew(int index) is invoked.
Isn't possible iterate in a list and set property on the same object, i have to need use other name ?
Thanks, Davide.

