Re: the difference between struts with JSTL tags and struts-el tags

2004-06-06 Thread vancega
Kay, Thanks for your reply. >Do you have a valid "taglib" directive in your JSP? Yes. > Do you have both the struts.jar and strutsel.jar in your WEB-INF/lib, Yes. both struts.jar and struts-el.jar >and there are no other instances of those jars in your classpath? my classpath: .;c:\j2sdk1.4.2_01\bi

the difference between struts with JSTL tags and struts-el tags

2004-06-05 Thread vancega
All, I am confused after using struts-el tags. I was previously using standard struts tags with jstl tags as needed. After I switched to use struts-el, some of tags are no more working. for example, readonly="true" attribute in html:text tag is not working in struts-el tags. It is saying that Erro

Re: Page pre-processing - reply

2004-05-31 Thread vancega
Manually calling execute() will work if execute() only does the initializing collections or data used on a form. Good idea. Kathy - Original Message - From: "None None" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, May 30, 2004 10:13 AM Subject: Re: Page pre-processing - repl

Re: Page pre-processing - reply

2004-05-29 Thread vancega
Eric, The way I did was to add the collection to request in Action bean when the validation of the form failed. The collection was re-initialized as needed. I have not found any other way in struts yet. Kathy - Original Message - From: "Eric Fesler" <[EMAIL PROTECTED]> To: "Struts Users

Re: presentation tag- Thank you.

2004-05-27 Thread vancega
Mark and Joe, Thank you very much for your info. I will try it out. :) Kathy . - Original Message - From: "Joe Germuska" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, May 27, 2004 5:15 PM Subject: Re: presentation tag > At 4:54 PM -0400 5/27/04

set default values for form fields - follow-up

2004-05-15 Thread vancega
I think the answer I got from online resources is I need to use either DynaValidatorForm or my own ActionForm, but not both. It seems that I could not overwrite reset(...) method in DynaValidatorForm by extending it. Correct me if I am wrong. Thanks, Kathy - Original Message - From: <[EM

Sorry I was using a wrong subject in my previous msg, which is not related to the subject "set ActionForm to null".

2004-05-15 Thread vancega
- Original Message - From: "Niall Pemberton" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]>; "pls" <[EMAIL PROTECTED]> Sent: Saturday, May 15, 2004 4:43 PM Subject: Re: How to set an ActionForm to null > This is expected behaviour, when you forward to your second

Re: How to set an ActionForm to null

2004-05-15 Thread vancega
I am using DynaValidatorForm but I need to set the default values for some text fields in a form. Therefore, I write a ActionForm which extends DynaValidatorForm and use reset method to set default values. The values were not shown after the form was loaded. I must miss something here. Could anyone

logic tag

2004-05-09 Thread vancega
I am new to struts. I have a question regarding logic tag. I was replacing those if else if . end if stuffs with logic tags on jsp pages. For example: if num==1 {// condition 1 block 1; }else if num==2 {// condition 2 block 2; } Usually if condition 1 is true, condition 2 does not be eva