haiii friends...
pls help me to solve this...
I have a listbox set to multiple. I can't get the values from this listbox.
<html:select property="relationalOperator" multiple="true" size="9" styleClass="LABEL">
html:options collection="relationalOperatorCombo" labelProperty="name" property="id"/>
</html:select>
And, i want to get the value of selected one....During a single click it will go to a method and there i tried this....
String operator = request.getParameterValues("relationalOperator");
But i ddnt get any value....During the double click am getting the value correctly....
But i need it in singleclick...
thanksss....