Same answer as your other question except use <html:hidden> instead of
<html:checkbox>

Using logic iterate....

<logic:iterate id="myLabelBeans"
                 name="myForm"
                 property="myLabelBeans"
                 offset="10"
                 length="10">

    <html:hidden name="myLabelBeans" property="myValue" indexed="true"/>

</logic:iterate>


Using JSTL...

<c:forEach var="myLabelBeans"
                 items="$(myForm.myLabelBeans}"
                 begin="10"
                 end="19">

    <html:hidden name="myLabelBeans" property="myValue" indexed="true"/>

</c:forEach>

Niall
----- Original Message ----- 
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, June 11, 2004 2:28 AM
Subject: hidden checkboxes


> Is there a way to render a portion of a collection (multibox) as hidden
input
> tags instead of rendered checkbox input tags?
>
> thanks
> chris
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


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

Reply via email to