Re: Data Validation

2001-02-04 Thread Jim Richards
>Has anyone thought about adding data validation tags to the Struts taglibs? This came up quite some time ago. I have a requirement for this sort of thing, and posted a library with example for doing validation (not sure where it is now). It work on the client side in JavaScript and you specify

Re[2]: graphical button in form

2001-02-04 Thread Oleg V Alexeev
Hello Christophe, Friday, February 02, 2001, 2:07:25 AM, you wrote: >>> Is there a prefered way to implement graphical buttons within a struts form ? >> You can use html:image tag and specify appropriate client-side scripts >> for image switching. >> Olegmailto:[EMA

Re: Data Validation

2001-02-04 Thread bram
I think the regular expression version (eg http://www.javaworld.com/javaworld/jw-12-2000/jw-1201-struts_p.html ) is much better, becouse jou can easely write a client side validation with the same regexp. ( have it working except for the stupid checkboxes and radio buttons in ie4+, I keep "losing

Bug?

2001-02-04 Thread Wong Kok Wai
I've encountered something strange after I changed to use the latest build (20010204). Currently, I've divided my JSPs into two directories: one directly under /myApp and another /myApp/admin. In a previous build of Struts (20001217), I can specify in the JSP the action path to be &quo

Data Validation

2001-02-04 Thread Neal Kaiser
Has anyone thought about adding data validation tags to the Struts taglibs? For example, what if we could do: or something like that. Could it not generate the necessary javascript, as well as provide an easy to use interface for detecting and reporting errors in the Action.perform()? Just w

RE: Reflection security problem

2001-02-04 Thread Paul Cowan
> One thing to double check is that your bean class has a public no-args > constructor, that the class itself is declared public, and > (of course) that the > getter methods are public. I've seen IllegalAccessException > problems when any > of these three things is violated. Thanks, it was t

what does this ERROR mean ??

2001-02-04 Thread majid kamal
could you please go to : http://www.webappcabaret.com/yna54context and explain to me what does this error mean. Thanks lot -- majid kamal [EMAIL PROTECTED] - email (781) 685-1450 x2371 - voicemail/fax __ FREE voicemail, email, and fax...all in

Re: Performance Issues with Struts

2001-02-04 Thread Wong Kok Wai
Actually what you've described applies for any tag lib. My approach is use Struts (or any tag lib) selectively. For example, I would use tag but use HTML for the input elements. Instead of using , I would use scriptlets to print the information. Same goes for tags like , , etc... --- Rajan Gupt

RE: member variables

2001-02-04 Thread Deadman, Hal
You only have to have to worry about synchronization if those session objects have instance variables. Of course objects that are put in the session typically have instance variables, otherwise, what's the point of putting them in the session? I guess you have to deal with the fact that the sessio

Re: db connection pool

2001-02-04 Thread Bill Sofko
Andre Wittenburg wrote: > > Hello, > > i just looked at the GenericDataSource and thought it would be a nice > feature to shrink the pool size when the connections are not needed > anymore. If you all agree, imho there should be two more values in the > dtd for the data-source and GenericDataSou

Performance Issues with Struts

2001-02-04 Thread Rajan Gupta
Has anybody used Struts in a largescale application and witnessed performance issues. It seems to me that the cost of creating & destroying tags in a JSP page would create a lot of overhead on the JVM. By putting all HTML elements as tags would there be not a significant overhead of creating & des

New LinkTag not working?

2001-02-04 Thread kin
To all,Currently i'm using the struts framework on my school project.Before this, I put a LinkTag from "org.apache.struts.taglib package" inside the IterationTag. This LinkTag passing some parameter around by put inside a Map. It working perfectly for me.---H

New LinkTag not working?

2001-02-04 Thread yahoo kin
To all,Currently i'm using the struts framework on my school project.Before this, I put a LinkTag from "org.apache.struts.taglib package" inside the IterationTag. This LinkTag passing some parameter around by put inside a Map. It working perfectly for me.---He

New LinkTag not working?

2001-02-04 Thread yahoo kin
To all,Currently i'm using the struts framework on my school project.Before this, I put a LinkTag from "org.apache.struts.taglib package" inside the IterationTag. This LinkTag passing some parameter around by put inside a Map. It working perfectly for me.---He

<<< XILIADES PROGRAMMATA - PC GAMES - PLAYSTATION APO 2000/CD >>>

2001-02-04 Thread <<< WEBMASTER >>>
DEAR struts-user <<< XILIADES PROGRAMMATA - PC GAMES - PLAYSTATION APO 2000 DRS/CD >>> PROGRAMMATA - PC GAMES - PLAYSTATION - VIDEO CD - DREAMCAST - MP3 - ARXITECTONIKA - IATRIKA - WEEKS - PAKETA (1000 NEOI TITLOI KATHE EVDOMADA) KARTES N*VA FOR FREE TV IF WE DON'T HAVE IT ...YOU

Re: Struts installation notes - WebLogic 5.1

2001-02-04 Thread Ted Husted
** WEBLOGIC USERS *** We're adding a installation page to the Struts documentation package. If any can playtest Robert's notes, or has any other additional comments, please let us know as soon as possible. This is an important way you can contribute to the Struts project. We appreciate everyone

Re: Dreamweaver

2001-02-04 Thread Martin Duffy
I have been looking into the possibility of writing Struts extensions for UltraDev4 (which is an extension of Dreamweaver itself). I would be interested in getting such extensions as well if they are available.   I will look in the list archives to see of I can find anything there. --

Re: member variables

2001-02-04 Thread John Hunt
What about anything that is put in the session object??? When should I worry about synchronization about such objects? Suppose I put an object which has some some methods in it? When should I worry about synchronization in the code that lies in it? Suppose I put an object in session and open two b