RE: Conditionally Validating an Entire Form Based Upon the buttonpressed

2004-08-19 Thread Robert Miller
I just tried this method and it works for me. Thanks! I may study the other suggestions as time permits. Thanks everyone for your suggestions! Robert >>> [EMAIL PROTECTED] 8/19/2004 2:30:18 PM >>> > -Original Message- > From: Robert Miller [mailto:[EMAIL PRO

Conditionally Validating an Entire Form Based Upon the button pressed

2004-08-19 Thread Robert Miller
I have a form which has a "save" (

RE: Help on Validator MASK needed

2004-07-30 Thread Robert Miller
Thomas, I agree with the escaping "+" (without escaping it is interpreted as "must have one or more of the previous"). Also if you wanted you could use "\d" instead of "[0-9]". A modified version that looks good is: ^(\+|-)?\d+$ This will match "x" or "+x" or "-x" (where x is any series of one

RE: Not Logged in with the same loggin-password if it is already registered.

2004-07-28 Thread Robert Miller
How do you handle the situation where the user closes the browser without logging out (the windows "X" is not always our friend ;) ). I am not familiar with the SessionListener. Would it help in some way? Robert >>> [EMAIL PROTECTED] 7/28/2004 3:25:16 PM >>> Exactly! Or use HttpSessionlistene

Re: Re: Why does work differently than ?

2004-07-28 Thread Robert Miller
fields and then submitting. however, two of the hidden fields are set upon arrival to the page by my action form. but they are not being picked up when i leave. all of this works flawlessly when using a submit button. :) andy On Wed, 28 Jul 2004 10:58:44 -0500, Robert Miller <[EMAIL PROTECTED

Re: Why does work differently than ?

2004-07-28 Thread Robert Miller
Andy, Sorry, I haven't been following your situation closely. Have you looked into using Javascript to have the link trigger form submission? An example of what I am talking about can be found here: http://www.javascript-coder.com/javascript-form/javascript-form-submit.phtml Robert >>> [EMAIL

Re: Recommendations for a JavaScript date picker

2004-07-26 Thread Robert Miller
Here are a couple from sites that I have found useful. http://javascript.internet.com/calendars/date-picker.html http://www.dynamicdrive.com/dynamicindex6/popcalendar2.htm Hope they help. Robert >>> [EMAIL PROTECTED] 7/26/2004 2:17:20 PM >>> Any recommendations for a JavaScript date picker?

RE: Validation prevents Action from creating session scopeobject

2004-07-26 Thread Robert Miller
Wow. That looks promising. Thank you again for all of your help. Robert >>> [EMAIL PROTECTED] 7/26/2004 12:59:21 PM >>> > -Original Message- > From: Robert Miller [mailto:[EMAIL PROTECTED] > Sent: Monday, July 26, 2004 10:50 AM > To: [EMAIL PROTECTED] >

RE: Validation prevents Action from creating session scope object

2004-07-26 Thread Robert Miller
:43:17 PM >>> > -Original Message- > From: Robert Miller [mailto:[EMAIL PROTECTED] > Sent: Monday, July 26, 2004 10:36 AM > To: [EMAIL PROTECTED] > Subject: Validation prevents Action from creating session scope object > > > The browser displays "Error 500: Canno

Validation prevents Action from creating session scope object

2004-07-26 Thread Robert Miller
I have a Struts application that acts like a "wizard" (conditionally displaying only relevant pages and skipping others based upon previous user input). One of my pages collects multiple instances of a single record by allowing data to be entered and displaying previous records in a table. To accom