following code will display multobox (Multiple Checkbox) using Label
value bean List.

<logic:iterate id="checkboxid" name="myform" property="entries_list">   
        <html:multibox property="selectedEntriesArray">
                <bean:write  name="checkboxid" property="value"/>
        </html:multibox>        
        <bean:write name="checkboxid" property="label" />
</logic:iterate>

id="checkboxid"
        This id will be referd in multibox tag , bean write tag

entries_list : is LabelValue Bean List
selectedEntriesArray : is Array Of String  




On Thu, 10 Feb 2005 11:36:23 -0800, Shey Rab Pawo
<[EMAIL PROTECTED]> wrote:
> I do a dropdown list as follows with a list holding label value beans:
> 
>                                  <html:select property="entries" size='1'>
>                                    <html:options collection="entries_list"
>                                                  property="value"
>                                                  labelProperty="label" />
>                                  </html:select>
> 
> How would I put these into a mulit-checkbox?  Thanks for any assistance.
> 
> --
> The radiance of all the stars does not equal a sixteenth part of the
> moon's radiance, likewise, good deeds giving us merit, all these do
> not equal a sixteenth part of the merit of loving-kindness..
> 
> ---------------------------------------------------------------------
> 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