• 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

multibox query

 
Ranch Hand
Posts: 35
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i have mutibox codes in JSP:
<logic:iterate id="colpermission" name="colpermissions">
<tr>
<td align="right" style="vertical-align: top;bgcolor="#CBDAE5">
<html:multibox property="selectedItems">
<bean:write name="colpermission" property="name"/>
</html:multibox>
</td>
<td style="vertical-align: top;" bgcolor="#CBDAE5">
<bean:write name="colpermission" property="name"/>
</td>
<td style="vertical-align: top;" bgcolor="#CBDAE5">
<bean:write name="colpermission" property="description"/>
</td>
</tr>
</logic:iterate>
problem is how do i retreive the selected items in Action .class
help !!
 
author
Posts: 11962
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The selected value(s) should be available through your FormBean just like any other form elements.
 
lee anthony
Ranch Hand
Posts: 35
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Question is after getting values -getparameterValues in action class and saving in db
when next time page being reopened it should show the last time --checked box
prepopulated multibox
in short how do i prepopulate the multibox
 
Lasse Koskela
author
Posts: 11962
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Are you using a FormBean? If you aren't, start using one -- otherwise you'll have to write the pre-populating logic yourself. You could take a look at this for starters.
 
She said she got a brazillian. I think owning people is wrong. That is how I learned ... tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic