From: "Milson Fredy Cardona Echeverri" <[EMAIL PROTECTED]>
> <logic:iterate id="report" name="formatos" indexId="index">
> <td><html:checkbox name="report" property="eliminar" value=xxxxx /></td>
> </logic:iterate>
> can i put in "VALUE = xxxxx" property of CHECKBOX the value of field
> "codigoFormato"?

If you have multiple checkboxes with the same name, you probably want the
'multibox' tag, not the 'checkbox' tag.

And if you're trying to do what I think you are, Struts-EL might be of help.
Here's an example from one of my projects:

<c:forEach items="${accountMap}" var="item" >
      <html-el:multibox property="accounts" value="${item.key}"/>
      <c:out value="${item.key}"/>
</c:forEach>

The 'accounts' property in the Form bean is a String[].

HTH,
-- 
Wendy Smoak


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to