aspose file tools
The moose likes Struts and the fly likes Usage of html:checkbox for Multiple Entities Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Frameworks » Struts
Reply Bookmark "Usage of html:checkbox for Multiple Entities" Watch "Usage of html:checkbox for Multiple Entities" New topic
Author

Usage of html:checkbox for Multiple Entities

sreenath reddy
Ranch Hand

Joined: Sep 21, 2003
Posts: 415
Hi

I have a scenario in which there are multiple checkboxes in the same page belonging to one logical entity(Say Hobbies with multiple options given to choose in the form of Checkbox Group).

Now in my ActionForm(Bean)i am using one get and set method with String[] as dataType.

So when the user selects multiple hobbies and clicks Submit, values gets filled properly . But during the modification scenario (like i set the hobbies to the form bean), the appropriate hobbies are not getting selected automatically though i used html:checkbox tag.

Is it that checkbox tag is not handling for Array of Values ??
Tim Storms
Ranch Hand

Joined: Apr 27, 2006
Posts: 64
You need to use the html:multibox tag.

For example:


You can now catch all the values in a String array in your form bean.

You also wanna check Struts Multibox Tag
[ June 30, 2006: Message edited by: Tim Storms ]

SCJP 1.5, SCWCD 1.4, SCBCD 5
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Usage of html:checkbox for Multiple Entities
 
Similar Threads
how to use- html:checkbox - and iterate it through - logic:iterate
Usage of html:checkbox for Multiple Entities
Getting the checkbox collection values in the FormBean
How to enable checkbox from value fetched from database
html:mutlibox uncheck ,check problem