vote up 0 vote down star

Hi all,

I am setting the value(kind of default value) for a drop down select value from action class in a page(given below). When the page loads the value is beig displayed but the other elements of the dropdown list is not displayed. here is the code.

Inside the action class
if(getTypeId() == null){
    	String typeId = request.getParameter("typeId");
    	setTypeId(typeId);
    	}

Inside the jsp page

 <tr>
        <s:select label="To" headerKey="-1" headerValue="--Please Select--" name="typeId" list="typesofteam"  />
    </tr>

What I am trying to do is create a single page for sending as well as saving the mail as draft. The code works fine for composing the message ie I am able to access the selected item from the action class. But I don't know how to set the drop down element from the action class. The above method just sets the value but the other elements in the list is not displayed.

I will be very grateful for any help on this.

Thanks, Aditya

flag

20% accept rate

1 Answer

vote up 0 vote down

Make getTypeId function inside your action / helper class to populate typesofteam list. Struts2 automatically invokes getters for name using ognl.

link|flag
Will try that. Thanks a lot. – Aditya R Nov 16 at 8:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.