On 3/12/2018 6:03 AM, albert kao wrote: > <s:textfield value="%{#person.name}" > name="persons[%{#stat.count}].name"/><br/>
I guess using #stat.index (instead of #stat.count) solves this issue. Count will be 1,2 and 3 but Index will be 0,1 and 2 which is same as that index that java uses. Regards.