Hi All,

I am facing issue while selecting multiple items in a List box using Webflow 2.

In my present requirement I am using list box where I can select multiple items. I am able to select multiple item in a list box in a JSP page. In the validator class I have defined a String array property to hold the multiple values and validator class is able to retrieve multiple values. Even I am able to retrieve value of List box from my Action class if I have selected one item. But if I select more than one items then also it retrieves only first item out of multiple items.
In my Action class I am using getRequestParameters() method of RequestContext. Below is the method how I have used. Where "groupJobCod" is the name of list box.

Code:
context.getRequestParameters().get("groupJobCod");
Is there any kind of property setting I need to do in view-state or do I need to use a different approach for List box.

Can someone provide suggestion or guideline on this. Your guidelines are very valuable.

Thanks in advance..