954,152 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Pre selecting combo box in JSP

I have a collections to be populated in a JSP combo box. Now suppose there is a different page for each user which displays user specific values in a combo box in that page.

The combobox should display the value from the collection specific to the user. But my combo box just shows the first value which is value.

Anyone knows how to do that? I mean pre selecting (a selected value of combo box) a user specific value in combo box.

to make it more simpler, lets say there is a combo box called "Manager" in the user page and it should display different Manager for different users. And this combo box is having a collection of managers.

comsec
Newbie Poster
3 posts since Sep 2008
Reputation Points: 10
Solved Threads: 0
 

This is more of an HTML question rather than a JSP question,

You have to add the parameter selected="selected" for the Option element you want to be selected by default.

An example is as follows:-
Consider you combobox has four elements Volvo, Saab, Fiat and Audi and you want Fiat selected by default, then you would have to do the following:-

<html>
  <body>
    <form action="">
      <select name="cars">
        <option value="volvo">Volvo</option>
        <option value="saab">Saab</option>
        <option value="fiat" selected="selected">Fiat</option>
        <option value="audi">Audi</option>
      </select>
    </form>
  </body>
</html>
stephen84s
Nearly a Posting Virtuoso
1,443 posts since Jul 2007
Reputation Points: 668
Solved Threads: 154
 

is used with Apache Struts something like this example (There is no explanation to code, just reference from which book the code come )
For stuts tutorial on form you may consider look at this tutorial , maybe this from from IBM (based on Websphere, but general logic can be re-used) or Advanced Forms Handling in Struts 1.1 (includes example of code in zip form)

peter_budo
Code tags enforcer
Moderator
15,432 posts since Dec 2004
Reputation Points: 2,806
Solved Threads: 901
 

Thanks guys for your reply. I am using Struts tags here. I followed the tutorial there too. I have property set in the form and it has the value but it does not show up in the combo box as selected value. Combo box still shows the "-1" value.

comsec
Newbie Poster
3 posts since Sep 2008
Reputation Points: 10
Solved Threads: 0
 

I have no idea about the structure of your database what sort of data you keep but surly somewhere along you looking up/checking to what group user belong so you would be able to get this info and incorporate it in your selection...

peter_budo
Code tags enforcer
Moderator
15,432 posts since Dec 2004
Reputation Points: 2,806
Solved Threads: 901
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You