Hi I've got this snippet in my .jsp file
<s:iterator value="order.details" status="status"> <s:set name="indexValue" value="#status.index"/> <s:form id="form%{#indexValue}" method="post" action="setLineItemAction" disabled="true"> <s:textfield name="order.details[%{#status.index}].productCode"/> <s:textfield name="order.details[%{#status.index}].productDescription"/> <s:textfield name="order.details[%{#status.index}].quantity"/> <s:submit/> </s:form> </s:iterator> but the disabled attribute is not being rendered into the final html, so all the forms are active. What am I doing wrong? Regards Roger --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]