Link to home
Start Free TrialLog in
Avatar of suprapto45
suprapto45Flag for Singapore

asked on

Multiple select in Struts

Darn,

I think that I have found the answer for this in my previous project but I just forgot it.

Situation: I need to use JavaScript to auto select all the option inside the select box then my FormBean can see the value (String[]). If I do not do that, it simply returns null.

Is this correct? or something wrong with my Struts config?

Thanks
David
Avatar of CEHJ
CEHJ
Flag of United Kingdom of Great Britain and Northern Ireland image

Avatar of suprapto45

ASKER

Hi CEHJ,

Nah, I think that you misunderstood my question.

I have been able to select all the options in my dropdown (using jQuery)....however, my dropdown has over 600 items hence it take some times for JavaScript to autoselect all of them hence we want to avoid this.

My question is that is there any way that we can pass the parameters to Struts without auto select the dropdown?

Thanks
David
And is it part of Struts requirement that we have to autoselect the dropdown before submitting? (I do not think so)

Hence, I suspected that there may be something wrong with my Struts configuration as well.

Thanks
David
Can you tell me clearly ???
Hi,

Sorry for not being clear enough. It was already late yesterday when I posted this question.

Okay, currently, I have one dropdown list in my JSP that allows multiple selection as shown in the attached code below. Now, everytime I submit the form, I am mapping the notAssignList into String[] in my FormBean.

However, in my Struts action, when I retrieved the parameters from my FormBean, it always said that my notAssignList is null. After checking via Fiddler, I found out that the notAssignList is not submitted to the request. However, another parameter i.e. companyNo is working fine and it can be retrieved from the FormBean.

if (form != null) {
    caf = (CompanyAssignForm) form;
                           
    notAssignList = caf.getNotAssignList();
}

Now, if I highlight / select all the option within the select dropdown (using JavaScript), I can retrieve the value from the FormBean properly.

Hence, I am confused here. Must we always auto-select all the options item within the select dropdown in order for Struts to be able to populate the FormBean?

Thanks.
David
-- JSP side
<select name="notAssignList" id="notAssignList" size="10" style="width:200px;" multiple="multiple">
    <option value="10">User 10</option>
    <option value="11">User 11</option>
</select>


-- Form Bean
public class CompanyAssignForm extends ActionForm {
	private static final long serialVersionUID = 1L;

	private int companyNo;
	private String[] assignList;
	private String[] notAssignList;
	
	/**
	 * @param mapping
	 * @param request
	 */
	public void reset(ActionMapping mapping, 
	 				  HttpServletRequest request) {
		this.companyNo = -1;
		this.assignList = null;
		this.notAssignList = null;
	}	
	
	/**
	 * @return the companyNo
	 */
	public int getCompanyNo() {
		return companyNo;
	}
	/**
	 * @param companyNo the companyNo to set
	 */
	public void setCompanyNo(int companyNo) {
		this.companyNo = companyNo;
	}
	/**
	 * @return the assignList
	 */
	public String[] getAssignList() {
		return assignList;
	}
	/**
	 * @param assignList the assignList to set
	 */
	public void setAssignList(String[] assignList) {
		this.assignList = assignList;
	}
	/**
	 * @return the notAssignList
	 */
	public String[] getNotAssignList() {
		return notAssignList;
	}
	/**
	 * @param notAssignList the notAssignList to set
	 */
	public void setNotAssignList(String[] notAssignList) {
		this.notAssignList = notAssignList;
	}	

Open in new window

Hi,

>>"Now, if I highlight / select all the option within the select dropdown (using JavaScript), I can retrieve the value from the FormBean properly. "
I mean that highlight / select all the options before the form is being submitted.

Thanks
David
ASKER CERTIFIED SOLUTION
Avatar of suprapto45
suprapto45
Flag of Singapore image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Why is it a problem getting null btw?
Hi CEHJ,

If we do not select any item in the list box (dropdown), there will be no parameter passed to FormBean in Struts hence causing my FormBean to return the variable as null.

Similarly, if we choose one item, it will return String[1] and if we choose two items, it will return String[2] and so on.

Thanks
David
>>causing my FormBean to return the variable as null.

Yes, but why is that a problem? Null seems to be very good...
Hi CEHJ,

Yes, not a problem with that.

My initial problem is that I thought that this is Struts problem. I thought that without selecting any item, it should also pass the parameters to my FormBean eliminating the need to programmatically select all the items in each dropdown. However, apparently, this is not a Struts issue and this is just behavior of all the browsers.

Thanks
David
>>eliminating the need to programmatically select all the items in each dropdown

Why is there that need though?
Hi CEHJ,

>>"Why is there that need though?"
Because my users said that it is rather slow. Consider that I have 6 dropdown in one of my JSP page and each dropdown has > 500 items on them.

On submission, I need my JavaScript to programmatically select these 3000 items in dropdown.

This is my main reason on why I posted this question in EE.

Thanks
David

I'm still rather mystified, but we'll leave it there ;)
CEHJ,

Thanks for your time in helping :).

Thanks
David
No problem