• 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

Not able to access request parameters in JPF...

 
Ranch Hand
Posts: 70
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi...

I am trying to get the value of one of the checkboxes present in JSP inside the Controller(.jpf) file.
Below is the checkbox

<input type="checkbox" name="checkgroup" id="checkgroup">
However, i get the value as null...

But if i precede the name with the portlet instance label as below, I am able to access the value.
<input type="checkbox" name="portlet_2_3checkgroup" id="portlet_2_3checkgroup">

Same problem also there when trying to access a parameter passed in the URL...

Could someone tell me as to why this happens?? Also is there a way to get it to work in the previous manner....???

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