I want to set value of hidden field in jsp through java script. I have array of checkbox in my jps and I want to store the value of check box in hidden field by passing the index value to javascript..
Javascript code function check(index, propertyname, newvalue) document.getElementById('clossProcess['+index+'].'+propertyName).value= newvalue; }
function changeFlag(index, closeCheckBox){ var flag="no"; if (closeCheckBox)="true"{ flag="yes"; check(index,'closeFlag',false); }
I have array of checkboxes property name is closeFlag when i check on it will call the javascript changeFlag( '${index)$', this) and that internally will call check(index,propertyname,newvalue) I want to set the value of checkbox in the hiddenfield.
Please do not cross-post the same question in multiple forums. It wastes people's time when multiple redundant conversations take place. Please continue any discussion of this topic in your JSP forum post.