Hi,
I am having <s:select which contains 5 values inside the <s:iterator tag. Also, I have <s:button tag inside this iterator and button onClick event, calling the javascript function and inside this funciton setting up action and submitting. The code snippet as follows
So my page looks like the following:
<table>
queue name1 dropdown list savebutton
</table>
<table>
queuename2 dropdown list savebutton
</table>
I am accessing this setStatus of <s:select name attribute inside my action class. For example, when I click on first save button, the javascript funciton has been called and coming to the action class. Inside the action class when i try to print the "setStatus", i should get only queue name1 drop down value, But instead iam getting all the quename1, queuename2 drop down value with comma seperated. Can any one please help me how to get only the selected dropdown value of that pariticular submit.
Thanks.