• 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

Struts-Nested tags : Problem using checkbox check all and uncheck all

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

I need to switch around 5 different workareas during a particular session. So, i create 5 workelements for each workarea.

Here is the form bean code



The bean

MyBean

inturn has a collection of another bean

MyInnerBean





I iterate the collection

myList

in my jsp to display a collection of checkbox.

Here, when i click on the checkbox all, i need to check both jan and feb checkboxes. Similarly, when i uncheck any of jan/feb checkboxes i have to uncheck the all checkbox.

Here is the js code...


When i load the page, i preload the jsp with myList collection and have all the checkbox values checked.

Now, when i uncheck the checkboxes and submit the jsp... i still have all checkbox value set to true and the reset is not getting reflected (i.e isAll(), isJan(), isFeb() always return true).

Please help.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic