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

Web Application, Struts (filling grid problem)

 
Ranch Hand
Posts: 40
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
I have a problem in filling a grid on parent JSP. My parent JSP has two radio buttons (Accept/ Reject) and three other columns in the grid. On click of any of these two radio buttons(Accept/ Reject), i am invoking a pop-up window.
The pop-up window(JSP) has two text-fields(Remarks1, Remarks2). When user enter data in both fields of pop-up window and click on save button the data of these two fields enter into corresponding fields of parent JSP.

Here I am sending some piece of code:-

Parent JSP Code

Due to some reasons i can't send the code of parent JSP.

###########################################
Pop-up JSP code:-

function fnSetValues()
{
opener.document.forms[0].strRemarks1 = document.forms[0].strRem1Popup.value; //strRem1Popup is pop-up form bean property

opener.document.forms[0].strRemarks2 = document.forms[0].strRem2Popup.value; //strRem2Popup is pop-up form bean property

}

*************************************************************************
Note: In above codes I am setting both remarks properties of pop-up to corres. properties of parent JSP. Tell me whether it is right approach or give me a way to solve this problem.
 
Ranch Hand
Posts: 1609
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
Vaibhav! you can channelise this question into struts forum. This one is SCJP specific.
[ July 17, 2007: Message edited by: Akhilesh Trivedi ]
 
Ranch Hand
Posts: 1274
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
Howdy Akhilesh,

I can do that for him.

Special service of the house.

Moving ....

Bu.
 
Ranch Hand
Posts: 4864
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
Vaibhav,

Please do not post the same question in multiple forums. It wastes the time of those willing to give a response.

I'm closing this thread. Anyone wishing to respond, please do so in this thread/.
 
Can you shoot lasers out of your eyes? Don't look at this tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
    Bookmark Topic Watch Topic
  • New Topic