Re: [OS-webwork] view data

2004-02-15 Thread Matt Ho
Florian Weber wrote: i just saw a example where exactly this is the case: under confluence, when you try to set a user password new. the from with the two password fields point to: dosetuserpassword.action?username=admin plus it has the two password parameters from the post request.. how is this

RE: [OS-webwork] view data

2004-02-14 Thread Jason Carreira
in the URL and a form field, however. > -Original Message- > From: Florian Weber [mailto:[EMAIL PROTECTED] > Sent: Saturday, February 14, 2004 4:01 PM > To: Jason Carreira > Cc: [EMAIL PROTECTED] > Subject: Re: [OS-webwork] view data > > > > On Feb 6,

Re: [OS-webwork] view data

2004-02-14 Thread Florian Weber
On Feb 6, 2004, at 16:41 Uhr, Jason Carreira wrote: Your form action is a URL with parameters in it? I don't know what will happen... You might end up with a String[] of size 2... Or you might just have one of the 2 parameter values... It could be server specific. I wouldn't count on how this is h

RE: RE: [OS-webwork] view data

2004-02-06 Thread Wayland Chan
> > -Original Message- > > From: Florian Weber [mailto:[EMAIL PROTECTED] > > Sent: Friday, February 06, 2004 10:38 AM > > To: Jason Carreira > > Cc: [EMAIL PROTECTED] > > Subject: Re: [OS-webwork] view data > > > > > > > > On

RE: [OS-webwork] view data

2004-02-06 Thread Jason Carreira
e- > From: Florian Weber [mailto:[EMAIL PROTECTED] > Sent: Friday, February 06, 2004 10:38 AM > To: Jason Carreira > Cc: [EMAIL PROTECTED] > Subject: Re: [OS-webwork] view data > > > > On Feb 6, 2004, at 7:01 Uhr, Jason Carreira wrote: > > > What do you mean,

Re: [OS-webwork] view data

2004-02-06 Thread Florian Weber
On Feb 6, 2004, at 7:01 Uhr, Jason Carreira wrote: What do you mean, the get and post scope? You will only be handling one request, either a get or a post. what if i have a form which leads to foo.action?name=bar, but in that form there is a also an input element with the name 'name'? --

RE: [OS-webwork] view data

2004-02-06 Thread Jason Carreira
What do you mean, the get and post scope? You will only be handling one request, either a get or a post. > -Original Message- > From: Florian Weber [mailto:[EMAIL PROTECTED] > Sent: Thursday, February 05, 2004 9:02 PM > To: [EMAIL PROTECTED]; Jason Carreira > Subject:

Re: [OS-webwork] view data

2004-02-05 Thread Florian Weber
On Feb 5, 2004, at 7:57 Uhr, Jason Carreira wrote: Your form field params will be set onto your Action... You can choose in your execute() whether to keep these values or to get some other values and set them before returning to be rendered... how is it handled though if a value with the same nam

RE: [OS-webwork] view data

2004-02-05 Thread Jason Carreira
Wednesday, February 04, 2004 11:27 PM > To: [EMAIL PROTECTED] > Subject: [OS-webwork] view data > > > hi! > > im wondering how xwork/webwork handles data which gets used > in views. in some occasions i just wanna make the data which > has just been > submitet > to th

[OS-webwork] view data

2004-02-04 Thread Florian Weber
hi! im wondering how xwork/webwork handles data which gets used in views. in some occasions i just wanna make the data which has just been submitet to the view. for example if the user didnt fill out all the required data in a form and i just wanna show that form with his data again.. as oppose

[OS-webwork] view data

2004-02-04 Thread Florian Weber
hi! im wondering how xwork/webwork handles data which gets used in views. in some occasions i just wanna make the data which has just been submitet to the view. for example if the user didnt fill out all the required data in a form and i just wanna show that form with his data again.. as oppose