• 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

Urgent...Need help on form submit

 
Greenhorn
Posts: 17
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I have a form in a JSP. THe values are not being properly submitted to the server. THe Action class always gets PP for the selectedProcedureType.
ANy help please?
-----------------------------------------------------
THis is the related piece in View Source of the browser.




------------------HERE IS THE JSP SNIPPET--------------
 
Ranch Hand
Posts: 948
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Wow, you sure have some wacky looking code there (btw it would be helpful if you disabled smilies and took out all the left indentation). I am not sure why you need the "hack" or the JavaScript at the bottom. What is the underlying type is procedureType? I would think your JSP code would look more like this (assuming that procedureType has a method getProcedureTypeId):


- Brent
 
neetu shri
Greenhorn
Posts: 17
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Brent,
Thanks for your reply. Actually we got that piece working finally. I have another question.

We have three radio buttons on a page.
When initially displayed, the radio buttons are selected/not selected based on the current user state.
After the form is submitted with a radio button selected the user state is updated. SO far we are fine.
But after navigating thru other pages and changing the user state if I go back to that page, the last submitted value of the radio button is still selected- which was changed in other page and is not represented by any of the radio buttons. How can I uncheck all the radio buttons.
I tried the following option.It didn't work. And it still displays the last selected value as checked.
I want to display the radio buttons with none of them selected.
THANK YOU
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic