• 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

Dropdown Selected returning unexpected value on submit.

 
Ranch Hand
Posts: 477
Eclipse IDE Tomcat Server Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi folks ,
Im trying to use a dropdown as part of the html form in the page im creating.The dropdown works in the following manner--
When I click or change the values in the dropdown the page reloads and the selected value is retained (using JavaScript), (expected behavior).However, when I submit the page using the submit button , I try to pass the value of the selected value(from the dropdown) through a script so that the value of the dropdown is passed correctly for DB operations, however the value is always set to -1.
and as result im not able to insert or update or perform any operations that occure after i press the submit button.
Im placing the code snippet from my jsp that I use for generating the dropdown and setting the selected value in a hidden field.
File:JSP

Servlet , where the value from dropdown is obtained and used for further processing.

here the value of setDtID is set to -1 , and not the dropdown selection ,every time I perform a submit . Any clue as to why this could be happening? Thanks for your time . Any help would be appreciated.
 
Vic Hood
Ranch Hand
Posts: 477
Eclipse IDE Tomcat Server Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Solved it .. Forgot to set the value of the hidden field .. my bad :\
 
What does a metric clock look like? I bet it is nothing like this tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic