Re: Struts 1.2.6 and

2005-02-10 Thread Brian Bezanson
Use Struts 1.2.6 and a JSP 2.0 compatible application server and have your web.xml file set to use JSP 2.0 and JSP EL syntax -- then you get the benefits of EL without the need for the struts-el packages. That's what I use now on my projects with Tomcat 5 or JBoss 4 application servers. On Thu, 1

Re: Struts Studio

2005-02-11 Thread Brian Bezanson
Last year when I started a new development project and chose Struts as the core application development technology I looked at and evaluated the three main IDE enhancements for Struts that I saw. I first decided that Eclipse 3.0 was going to be my IDE of choice. I then evaluated MyEclipse, Struts S

Re: Struts Studio

2005-02-11 Thread Brian Bezanson
On Fri, 11 Feb 2005 12:32:55 -0500 (EST), Frank W. Zammetti (MLists) <[EMAIL PROTECTED]> wrote: > I hope I didn't come across being anti-IDE... that wasn't my intent. > > ... cut comments ... > > Is that a reasonable middle-ground Brian? :) Frank, I agree with the middle ground and what Duncan

Re: not working after Validation errors?

2005-02-21 Thread Brian Bezanson
David, What you need to do is to create your own custom handling of "Reset". In the case of your form, I would NOT use a , instead make a but have a javascript snippet that sets a value for a hidden form field, lets call the hidden field "action" and the value would be 'reset'. Then in your Log

Struts ActionForward to HTML anchor

2005-03-11 Thread Brian Bezanson
I'd like to know if it is possible to get a ActionForward to scroll my target page to an anchor on the page created with the . Problem Description -- I have a page in struts (rather large form) where I have a drop-down menu near the bottom with some choices. (AKA html:s

Re: Newbie Q - Rendering drop down menu

2005-06-02 Thread Brian Bezanson
> Why does the following render as a box containing text (you know what I > mean - where you can select multiple items) rather than a drop down menu ? > > > > property="id"/> > You gave it a size of 10 so it makes a scrolling list with a size of 10 versus a drop-down me

Struts 1.2.4/Validator 1.1.3 and constant validation issue with '&' for constant-value

2004-11-22 Thread Brian Bezanson
Hello. I'm trying to create a mask for use in password fields that accepts: - UPPERCASE A-Z - lowercase a-z - Numbers 0-9 - Special Characters !,@,#,$,%,^,&,(,), and * In the "validation.xml" file I have the following defined. password [EMAIL PROTECTED]&*()]*$ ...