| Author |
popup - updates parent form bean arraylist
|
M Conlin
Greenhorn
Joined: Aug 01, 2005
Posts: 15
|
|
I would like to have a pop-up screen update the formbean on the parent page. The design of this is getting pretty nastey. Example; I have a page that creates a user object - user_create.jsp I have a pop-up that alows you to enter an address - address_create.jsp A user can have 1..N addresses. I want the user_create page to allow for the pop-up and subsequent creation of multiple addresses. Any ideas..... [ August 01, 2005: Message edited by: M Conlin ]
|
 |
Merrill Higginson
Ranch Hand
Joined: Feb 15, 2005
Posts: 4864
|
|
Here's one possible way to do it: Make one of the properties of your create-user form bean to be a List of Address objectsMake "session" the scope of the create-user form beanSpecify a target attribute on the <html:form> tag in the create-address jsp which refers to the main page. That way, when the action completes, the results will be displayed on the main page.Have the create-address action retrieve the create-user form bean from the HttpSession object and update it with the address that was just added.Have the create-address action forward to the create-user jsp.
|
Merrill
Consultant, Sima Solutions
|
 |
 |
|
|
subject: popup - updates parent form bean arraylist
|
|
|