How to fetch all select box value in one array list

后端 未结 1 783
北荒
北荒 2020-12-12 08:18

I have generated dynamic select box in jsp and given names cb01,cb03..cb63 etc. Now i want to fetch these select box value in Action class variable like in ArrayList or

相关标签:
1条回答
  • 2020-12-12 08:20

    Select Tag in JSP with multiple="true"

    <s:select name="mylist" id="id_mylist" list="countryList" multiple="true"/>
    

    On submit of the form calling the following Java Script. This will essentially mark all the element in the list as selected.

    function doSubmit(){
     var mylistvar =document.getElementById("id_mylist");        
                 if(mylistvar  !=null){      
                    for(var x=0;x<mylistvar.options.length;x++){        
                        mylistvar.options[x].selected=true;
                    }
                 }
    
    }
    

    The ArrayList variable used above could looks like this.

    private ArrayList<String> countryList = new ArrayList<String>();
    

    This way when the form is submitted all the values in the list would be bind to the server directly as an arraylist.

    0 讨论(0)
提交回复
热议问题