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
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

regarding checkbox

 
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
Hi,

i have array check boxes in my jsp,

ex: itemcode itemname checkbox ADDMORE

when i click ADDMORE button add new row in jsp with same properties

i write my formbean checkbox property as:

public boolean[] check;

in my action:

String check[]=request.getParameterValues("check");

i didn't get checkbox values

but i get the checked values in setter method of formbean(didn't get unchecked values)

Help me,

Thanks in advance
 
Ranch Hand
Posts: 4864
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
Johny,

You've already asked this same question in at least two different threads. If you have follow-up questions, please post them in the original thread, rather than opening up new ones with the same question.

For those of you wanting to answer this question, please post to this thread
 
    Bookmark Topic Watch Topic
  • New Topic