I have a java script function and getting "pitems" list values in select, and i want to send the values in the form of List to my CommonService class through f_getPop().
How can i send "pitems" List to my CommonService class
Below code is not working...
function f_getPop(){
CommonService.getAmount(document.getElementById("pitems").value , populateAmount);
}
function populateAmount(data){
document.getElementById("amount").value=data;
}
Bookmarks