Originally posted by Jesus Angeles:
1. In struts 2, the label can automatically have '*' for 'required' fields. Is there such in struts 1.x?
No, Struts 1 will not do this.
Originally posted by Jesus Angeles:
2. My validation, in struts 1.x, using 'double' and 'doubleRange' doesnt work. Any reason it wouldnt work? I have given the correct attributes. The jsp also has the javascript struts tag, and attributes on the 'form' tag for the validation.
I don't know what the problem is here. If you need help debuggin it, post your code.
Originally posted by Jesus Angeles:
3. My login page struts 1.x password field ideally is masked, i.e. an asterisk is shown while typing the password. Is it possible in struts 1?
Just use the html:password tag.
Originally posted by Jesus Angeles:
4. is jstl/el useable in struts 2, just like it is in struts 1.x?
Yes, it is. Remember that Since Struts 2 must run in a
Servlet 2.4 container, EL expressions can be placed anywhere in the JSP without a c:out tag.
Originally posted by Jesus Angeles:
5. is there any issues in jstl tags inside struts tags, and struts tags inside jstl tags, for both struts 1.x and 2?
None that I'm aware of as long as you're using Struts 1.3. One issue with earlier versions is that you couldn't use
indexed="true" inside a JSTL c:forEach loop. That's fixed in 1.3, though.