Conditionally Validating an Entire Form Based Upon the button pressed

2004-08-19 Thread Robert Miller
I have a form which has a save (html:submit ...) and continue (html:cancel ...) button. The save should validate and process the data in the form. The continue button should go to the next page, skipping any validation and processing. I have been using the validator plugin, with all of my

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 PROTECTED] Sent: Thursday, August

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 or more

Re: Why does html:submit work differently than html:link action=?

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: Re: Why does html:submit work differently than html:link action=?

2004-07-28 Thread Robert Miller
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] wrote: Andy, Sorry, I haven't been following your situation closely

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 HttpSessionlistener and

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

RE: Validation prevents Action from creating session scope object

2004-07-26 Thread Robert Miller
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 snip The browser displays Error 500: Cannot find bean list in any scope. It is acting as though

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] Subject: RE: Validation prevents Action

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? I