| Author |
auto populate forms from form-beans
|
jonathan Greens
Ranch Hand
Joined: Apr 07, 2004
Posts: 139
|
|
hi folks, suppose i have two forms formA and formB associated with actionA and actionB. The two forms are on the same jsp. when actionA is invoked i want to auto-populate the field b in formB, is this possible? I tried the following: in actionA.execute(): FormB =new FormB(); formB.setB(newVal); request.setAttribute("formB",formB); but this doesn't work.. any idea? thanks!!
|
 |
sreenath reddy
Ranch Hand
Joined: Sep 21, 2003
Posts: 415
|
|
Hi Greens That should work .Form - bean is just another java bean .so whatever u r doing shoudl work .but the scope of that will be only with in that request
|
 |
 |
|
|
subject: auto populate forms from form-beans
|
|
|