• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Usage of html:checkbox for Multiple Entities

 
Ranch Hand
Posts: 415
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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 ??
 
Ranch Hand
Posts: 64
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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 ]
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic