hi i have 3 jsp pages 1.parent 2. child 3.grandChild
how can i access a radio button in grandChild jsp in Parent Jsp
can i access like this
parent.parent.document.forms['AccountClosureForm']['DECISION'][0]==true
|
|
hi i have 3 jsp pages 1.parent 2. child 3.grandChild how can i access a radio button in grandChild jsp in Parent Jsp can i access like this parent.parent.document.forms['AccountClosureForm']['DECISION'][0]==true
|
||
|
|
|
|
you cannot JSP is run server side, you dont have a Javascript document on your server If you want to have jsp 'talk' to each other you can use session and request objects But once all 3 jsp are send to the browser and rendered as HTMl you can use any JavaScript you see fit to achieve what you want |
||
|
|
|
|
I assume you either used From your code snippet, it looks you want to use it in JavaScript. Isn't it? If thats the case you can simply do something like |
||||
|