RE: How to differentiate between timed-out user and new user?

2003-07-09 Thread Poon, Johnny
So when you say "persistent user repository", do you mean something that the programmer manually store in the DB or is there some API that we can query it on the web server? -Original Message- From: Paananen, Tero [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 4:11 PM To: 'Struts

RE: validator validwhen not working?

2003-07-09 Thread Poon, Johnny
ginal Message- From: David Graham [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 11:56 AM To: Struts Users Mailing List Subject: Re: validator validwhen not working? Are you using a nightly build after 1.1 final? ValidWhen was not included with 1.1. David --- "Poon, Johnn

validator validwhen not working?

2003-07-09 Thread Poon, Johnny
Hi, I'm trying to use validwhen, so that it's only valid when either all three related fields are empty or are filled, it's valid; otherwise not. ssn_1, ssn_2, and ssn_3 are the field names. For some reason, when I put this in, none of the validation takes place, not even required, minlength, ma

Single error message for multiple fields using Validator?

2003-07-08 Thread Poon, Johnny
Hi, I'm using Validator. Can anyone tell me if there's a way to only show one general error message when there are errors on several fields on the page? Further, how to change the font on the title and move focus to of all the error field? What I want to do when validation comes back false are t

RE: Validator using instead of

2003-07-07 Thread Poon, Johnny
Sandeep, The validateEnterAppInfo1(form) method gets called with the submit button hardcode w/i the . If I remove the validateEnterAppInfo1(this) call, no javascript validation will take place, while the server-side validation still works. There is always going to be only one form per page, so

RE: Validator using instead of

2003-07-07 Thread Poon, Johnny
truts Users Mailing List Subject: Re: Validator using instead of should it be a validatorForm? sandeep --- "Poon, Johnny" <[EMAIL PROTECTED]> wrote: > Hi, > > I'm using trying to use ValidatorActionForm and > tile, but the submit button > is outside of the for

Validator using instead of

2003-07-07 Thread Poon, Johnny
Hi, I'm using trying to use ValidatorActionForm and tile, but the submit button is outside of the form on a different JSP, therefore, I need to submit my form indirectly using a link and javascript (see code below). Neither the client-side javascript nor the server-side validation get called. B

RE: Big Javabean?

2003-07-03 Thread Poon, Johnny
sion capacity, etc.? -Original Message- From: David Graham [mailto:[EMAIL PROTECTED] Sent: Thursday, July 03, 2003 9:38 AM To: Struts Users Mailing List Subject: Re: Big Javabean? --- "Poon, Johnny" <[EMAIL PROTECTED]> wrote: > Hi > > There are 2 quick questions. >

Big Javabean?

2003-07-03 Thread Poon, Johnny
Hi There are 2 quick questions. 1) I'm considering making one huge javabean that will have 100+ fields. This bean will be share in the session across up to 23 different screen. I think this is probably the cleanest way, as the same field might show up in different screens. I don't think this wi

RE: JSP's taking too long in websphere

2003-06-24 Thread Poon, Johnny
aking a long time.. even after I checked off those options! None of my other files take this long - except for the JSP's. -Original Message- From: Poon, Johnny [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 24, 2003 11:40 AM To: 'Struts Users Mailing List' Subject: RE: JSP&#x

RE: JSP's taking too long in websphere

2003-06-24 Thread Poon, Johnny
What is the CPU and Memory of your computer? Sometime it could be simply lack of power to run WSAD. Another thing you can try is to turn off "Perform build automatically on resource modification" and "Refresh Workspace on startup". You can find these 2 options in "Window->Preferences->Workbench"

RE: Problem encountered after installing Struts 1.1 Release Candidate 2.

2003-06-24 Thread Poon, Johnny
Users Mailing List Subject: Re: Problem encountered after installing Struts 1.1 Release Candidate 2. On 06/23/2003 08:43:05 PM "Poon, Johnny" wrote: > Hi, > > I'm using WSAD 5.0. I just downloaded the Struts 1.1 Release Candidate 2 > binary from: > http://apache.

Problem encountered after installing Struts 1.1 Release Candidate 2.

2003-06-23 Thread Poon, Johnny
Hi, I'm using WSAD 5.0. I just downloaded the Struts 1.1 Release Candidate 2 binary from: http://apache.mirrorcentral.com/dist/jakarta/struts/binaries/jakarta-struts- 1.1-rc1.zip. I then deleted the files of Struts 1.1 RC1 from my WSAD. I installed the RC2 by following the installation instruct

Wizard style internet application?

2003-06-23 Thread Poon, Johnny
Hi all, I'm designing a wizard-style internet application using struts and tiles. By "wizard-style" internet application, I mean internet application that guide user step by step with "Back" and "Next" button on each screen. I came up with some design, but I'm not sure if I like it, especially th

RE: Logic:Iterate - Pls Help.........

2003-06-23 Thread Poon, Johnny
You might need to add this before your : -Original Message- From: Shashank Dixit [mailto:[EMAIL PROTECTED] Sent: Friday, June 20, 2003 7:44 AM To: Struts Users Mailing List Subject: Logic:Iterate - Pls Help. Hello All Can somebody pls explain how to use I am using following

RE: Populating Drop-down

2003-06-10 Thread Poon, Johnny
We also maintain a transaction object in the session for holding the user data between screens for multiple form updating. -----Original Message- From: Poon, Johnny [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 10, 2003 9:56 AM To: 'Struts Users Mailing List' Subject: RE: Populating D

RE: Populating Drop-down

2003-06-10 Thread Poon, Johnny
Mark, I'm glad you asked the question, caz' I was wondering about the same thing. I'm using label/value. This is what I'm doing. I'm populating a form bean with a vector of label/value option pairs within an Action and store in the request. I then forward it to the targeted JSP, and the and t

Best ways to populate an for a JSP?

2003-06-09 Thread Poon, Johnny
Hi, I'm populating a form bean with a vector of label/value option pairs within an Action and store in the request. I then forward it to the targeted JSP, and the and tags within the will be populated with the values (label/value) in the vector. I'm able to achieve that and populate my succe