Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

populating jsp through javascript

 
Ranch Hand
Posts: 126
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
Hi

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);
}

Jsp

........
"<"logic:iterate id="closeProcess name=formname property="statusList">"
<html:hidden indexed="true" name=closeprocess property=closeFlag value="no"/">"
"<"/logic:iterate

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.

Thanks in advance
Infynity
 
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
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.
    Bookmark Topic Watch Topic
  • New Topic