Re: question about form handling

2003-12-29 Thread Mark Lowe
Yeah.. I tend to do things on the server and layer the client-side stuff on when i get time. In fact i'm a bit obsessive about not having js dependent apps. :o) On 29 Dec 2003, at 16:53, Cory Wright wrote: Hi Dirk: Sounds like you're talking about client-side issues here. If you're just tryi

Re: question about form handling

2003-12-29 Thread Cory Wright
Hi Dirk: Sounds like you're talking about client-side issues here. If you're just trying to populate form-fields with values from a child window (i.e. popup), use javascript to try something like this in the popup: function updateParent(){ popUpValue = document.getElementById("whateverThePo

Re: question about form handling

2003-12-29 Thread Mark Lowe
I'd approach the problem by thinking about having a child form that popluates a parent form. When you close the window or submit (have a button in noscript tags) the child it fires up an action which copies the values of the child form into the parent. If the parent is scoped to session ChlidF

question about form handling

2003-12-29 Thread dirk
Hello, anybody know how to handle one action, but two forms (one base form + one popup ). When the popup gets closed the base form should be updated with the data from the popup. Anybody has a working example ? Thanks