RE: Why not an Action Based Validator?

2003-01-15 Thread Phase Web and Multimedia
No, that is different. That has to do with using the form bean name or the action 'mapping'. I am talking about having a validate method in the action class rather than the ActionForm class. Brandon Goodin Phase Web and Multimedia P (406) 862-2245 F (406) 862-0354 [EMAIL PROTECTED]

Re: Why not an Action Based Validator?

2003-01-15 Thread Gemes Tibor
2003. január 15. 09:12 dátummal Phase Web and Multimedia ezt írtad: No, that is different. That has to do with using the form bean name or the action 'mapping'. I am talking about having a validate method in the action class rather than the ActionForm class. Sorry, just didn't read the end of

OT: How to organize your software in proper version control structure

2003-01-15 Thread Timo Riikonen
Hello, Here ia a question that may not have only one correct answer, but I hope you will try to give me your answer still. How to organize your software in proper version control structure? Background: - We are a small company 20 employees to whom this concerns, so expenses are a concern. - We

RE:[Gurus Invited] Why not an Action Based Validator?

2003-01-15 Thread Phase Web and Multimedia
But, can the Validator be called/used from within the action class? For example, you need to extend your ActionForm to ValidatorForm/ValidatorActionForm in order to use the Validator. Could the same code be used to create a ValidatorAction that had a validate method that could be called within

[validator] numbers with localized decimal separator

2003-01-15 Thread Gemes Tibor
In hungarian language the decimal separator is comma: 123.45 would be written in the form of 123,45 Btw are you aware of any other Locale in which the decimal separator is not '.'? If the user enters number and the client's Locale is hu then the validateFloat cannot parse it. The float

AW: AW: Transforming a String to valid HTML encoding

2003-01-15 Thread Hirschmann, Bernhard
Thank you for your help, Craig. I don't know if you got me completely right.. or maybe I didn't understand. What I want to do is to transform the regional characters of a String like ü into uuml; The reason is, that I don't want to use utf-8, but ISO-8859-1 for my html pages. And if a ü

Re: [Gurus Invited] Why not an Action Based Validator?

2003-01-15 Thread Gemes Tibor
2003. január 15. 10:13 dátummal Phase Web and Multimedia ezt írtad: But, can the Validator be called/used from within the action class? I use the Validator to check if the input is in the appropriate Domain (int, float, mask, date, etc) which can be checked static. However there are some

Re: AW: AW: Transforming a String to valid HTML encoding

2003-01-15 Thread Gemes Tibor
2003. január 15. 10:16 dátummal Hirschmann, Bernhard ezt írtad: The reason is, that I don't want to use utf-8, but ISO-8859-1 for my html pages. And if a ü appears in the ISO-8859-1 characterset in the browser, What is wrong with utf-8? Tib -- To unsubscribe, e-mail: mailto:[EMAIL

Re: [validator] numbers with localized decimal separator

2003-01-15 Thread Simon Kelly
- Original Message - From: Gemes Tibor [EMAIL PROTECTED] Btw are you aware of any other Locale in which the decimal separator is not '.'? Germany uses the ',' as well. Simon -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL

AW: AW: AW: Transforming a String to valid HTML encoding

2003-01-15 Thread Hirschmann, Bernhard
The reason is, that I don't want to use utf-8, but ISO-8859-1 for my html pages. And if a ü appears in the ISO-8859-1 characterset in the browser, What is wrong with utf-8? Nothing is wrong with utf-8. Maybe it would be the best to use it, even though everything is much more complex while

Fwd: Nested tags configuration... again

2003-01-15 Thread Mark Lowe
Sorry to repost but any ideas? Inizio del messaggio inoltrato: Da: Mark Lowe [EMAIL PROTECTED] Data: Mar 14 gen 2003 17:38:27 Europe/Rome A: Struts List [EMAIL PROTECTED] Oggetto: Nested tags configuration Rispondere-A: Struts Users Mailing List [EMAIL PROTECTED] anyone had any problems

Re: [validator] numbers with localized decimal separator

2003-01-15 Thread Gemes Tibor
2003. január 15. 10:42 dátummal Simon Kelly ezt írtad: Btw are you aware of any other Locale in which the decimal separator is not '.'? Germany uses the ',' as well. ok, so I assume this is a problem. Do you think that is there any other way of validating float number input but masking it

Re: AW: AW: AW: Transforming a String to valid HTML encoding

2003-01-15 Thread Gemes Tibor
2003. január 15. 10:52 dátummal Hirschmann, Bernhard ezt írtad: The reason is, that I don't want to use utf-8, but ISO-8859-1 for my html pages. And if a ü appears in the ISO-8859-1 characterset in the browser, What is wrong with utf-8? Nothing is wrong with utf-8. Maybe it would be the

RE: [Gurus Invited] Why not an Action Based Validator?

2003-01-15 Thread Phase Web and Multimedia
But that is my whole point. Complex validation or not. Why don't we handle both types of validation in the SAME class. I don't want to beat this into the ground. But, it just seems organizationaly better in my mind to handle validation on the Action level. With all the great minds on this project

Re: ProcessAction - Scaffold package

2003-01-15 Thread Ted Husted
I just added response to the CheckOutcome signature and its friends, including exposeInScope(). Send me the changes that you make to get the cookies up and running and we'll get that up too. Thanks for bringing this up. It should have been there from the beginning =:0) -Ted. Senthivel U S

RE: [Gurus Invited] Why not an Action Based Validator?

2003-01-15 Thread Andrew Hill
+1 -Original Message- From: Phase Web and Multimedia [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 15 January 2003 18:30 To: Struts Users Mailing List Subject: RE: [Gurus Invited] Why not an Action Based Validator? But that is my whole point. Complex validation or not. Why don't we handle

Refresh on MSIE, PLEASE HELP!!

2003-01-15 Thread kiuma
Hello, I'm having big troubles with MSIE because it doesn't refresh the content of my forms. I've put META HTTP-EQUIV=expires CONTENT=0 META HTTP-EQUIV=Pragma CONTENT=no-cache META HTTP-EQUIV=Cache-Control CONTENT=no-cache but it doesn't refresh my pages! How to do to

AW: AW: AW: AW: Transforming a String to valid HTML encoding

2003-01-15 Thread Hirschmann, Bernhard
Nothing is wrong with utf-8. Maybe it would be the best to use it, even though everything is much more complex while handling stuff like the html form entries, which have to be converted. No, as far as you are using the SetCharacterEncoding filter coming with the example application of

RE: Refresh on MSIE, PLEASE HELP!!

2003-01-15 Thread Michael.Kessler
We use the following code snippet to prevent the browsers from caching. meta http-equiv=pragma content=no cache meta http-equiv=cache-control content=no store meta http-equiv=expires content=0 Mike -Original Message- From: kiuma

Re: [Gurus Invited] Why not an Action Based Validator?

2003-01-15 Thread Gemes Tibor
2003. január 15. 11:30 dátummal Phase Web and Multimedia ezt írtad: But that is my whole point. Complex validation or not. Why don't we handle both types of validation in the SAME class. I don't want to beat this into the ground. But, it just seems organizationaly better in my mind to handle

Re: AW: AW: AW: AW: Transforming a String to valid HTML encoding

2003-01-15 Thread Gemes Tibor
2003. január 15. 11:32 dátummal Hirschmann, Bernhard ezt írtad: I think I have to study this in more detail - it still isn't quite clear for me. What is this SetCharacterEncoding filter doing? Is it only working with Tomcat? (We use WebSphere 4) I don't know websphere, but if it conforms to

Re: Refresh on MSIE, PLEASE HELP!!

2003-01-15 Thread kiuma
[EMAIL PROTECTED] ha scritto: We use the following code snippet to prevent the browsers from caching. meta http-equiv=pragma content=no cache meta http-equiv=cache-control content=no store meta http-equiv=expires content=0 Mike -Original Message- From: kiuma [mailto:[EMAIL

Re: Need Dynamic Form Beans feature for Struts1.0.2

2003-01-15 Thread ashokd
Hi, By using 1.0.2 also we can use Dynamic Form. For this we need to add some .zar files. I expermented with 1.0.2 Thnaks Regards, Ashok.D - Original Message - From: Yuan, Saul (TOR-ML) [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Thursday, January 09, 2003

Struts horizontal menu

2003-01-15 Thread Heligon Sandra
I have many difficulties of presenting the menu which I wish in my application. I already posted a message on this subject, a person sent a example to me but unfortunately someimperfections remain and I am not able to solve them. This example uses the tags Tiles andJavascript

RE: How to let a user click a column header to sort data in a table u sing struts?

2003-01-15 Thread PILGRIM, Peter, FM
-Original Message- From: Jason Yam [mailto:[EMAIL PROTECTED]] Sent: 15 January 2003 06:52 ---- Hi all, anyone knows how to implement this sequence of operations in struts (i.e. click column header to sort)? DisplayAction - jsp form - ProcessAction - jsp

LookupDispatchAction

2003-01-15 Thread Pat Quinn
Hi guys, I have a form with three submit buttons using the lookupDispatchAction approach. I want to add some href's for paging... so whats the best way to submit the paging request.. i will need all the form data on paging... in order to force an update in the event that the user has entered

Using a Digester to get recursive types from an xml file.

2003-01-15 Thread Simon Kelly
Hi all, Has anyone had to parse a xml document through a Digester where the xml doc contains recursive tags? I set the rules for the app in what I thought was the correct manner, but I got a load of junk back when it came to unloading the resultant bean. I would have included the code I used,

Re: Using a Digester to get recursive types from an xml file.

2003-01-15 Thread Gemes Tibor
2003. január 15. 13:02 dátummal Simon Kelly ezt írtad: Hi all, Has anyone had to parse a xml document through a Digester where the xml doc contains recursive tags? I set the rules for the app in what I thought was the correct manner, but I got a load of junk back when it came to unloading

RE: Using a Digester to get recursive types from an xml file.

2003-01-15 Thread Jacob Hookom
The newer digester versions allow you to do: */item for the path to allow for recursion. | -Original Message- | From: Simon Kelly [mailto:[EMAIL PROTECTED]] | Sent: Wednesday, January 15, 2003 6:03 AM | To: Struts Users Mailing List | Subject: Using a Digester to get recursive types from

AW: Refresh on MSIE, PLEASE HELP!!

2003-01-15 Thread Hirschmann, Bernhard
Sadly this doesn't solve the problem! Does your browser use a http proxy? Maybe this is the reason. Bernhard -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

combining different business objects for validation

2003-01-15 Thread Heather Buch
I'm reading Programming Jakarta Struts and am in need of a little clarification. According to the book, a service creates business objects. The action class gets business objects from the service Business objects perform their own business rules validation. What if the validation of a

Struts test case and modules

2003-01-15 Thread Christophe Vigouroux
Hi, I've just upgraded to struts 1.1b3 and strutstest 1.95 and I'm still experiencing problems using strutstest with an application module. I try to verify a forward with the verifyForward() method, but I have an assertion failed : was expecting '/index.do' but received '/admin/index.do' where

String , html encoding

2003-01-15 Thread Ahmed ALAMI
Hello everyone, How can I encode Strings to HTML content. including the special caracters (é, è), because I have bzzarre outpouts. THX -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Changing the log level of Struts

2003-01-15 Thread Christophe Vigouroux
Hello again, I want to disable the output of the INFO messages coming from Struts (especially those from the validator...). How can I do this ?? Christophe VIGOUROUX ECILIA -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: Changing the log level of Struts

2003-01-15 Thread Ahmed ALAMI
I'm using Log4J so i set the level to ERROR. -Message d'origine- De : Christophe Vigouroux [mailto:[EMAIL PROTECTED]] Envoyé : Wednesday, January 15, 2003 1:50 PM À : 'Struts Users Mailing List' Objet : Changing the log level of Struts Hello again, I want to disable the output of the

Re: changing ActionForm to be a Java interface

2003-01-15 Thread Dan Jacobs
Hi Craig, I think your point below about form-beans being part of the framework is the nub of the crux of the problem. There's not enough there for novice users to distinguish their responsibilities from those of normal Java Beans. Customarily, object-oriented frameworks are extended solely

Re: AW: Refresh on MSIE, PLEASE HELP!! NOT SOLVED

2003-01-15 Thread kiuma
Hirschmann, Bernhard ha scritto: Sadly this doesn't solve the problem! Does your browser use a http proxy? Maybe this is the reason. Bernhard -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED] . No proxy set. The fact is

RE : Changing the log level of Struts

2003-01-15 Thread Christophe Vigouroux
But I'm using JDK 1.4 logging system... I also tried to set those properties in my web.xml : init-param param-namedebug/param-name param-value0/param-value /init-param init-param param-namedetail/param-name param-value0/param-value /init-param Christophe VIGOUROUX ECILIA -Message

A form with a List

2003-01-15 Thread João Paulo Batistella
Hi! I have the following situation: One form that have 20 lines of professionals. The problem is how to get the 20 professionals using only one form? Can I have a collection (or List) as an attribute of a Form? The number 20 is dynamic. It could bem 20, 30 or more. Thanks, Joao Paulo.

RE: How to let a user click a column header to sort data in a tab le u sing struts?

2003-01-15 Thread Thomas CORNET
Hello Do you need this sequence to be full JSP ?? Because JavaScript librairies exist to let you directly sort tables. Thus, no page reload is needed. Thomas At 11:39 15/01/2003 +, you wrote: -Original Message- From: Jason Yam [mailto:[EMAIL PROTECTED]] Sent: 15 January 2003

RE: How to let a user click a column header to sort data in a tab le u sing struts?

2003-01-15 Thread Jacob Hookom
What?! Do you have a link?? :-) | -Original Message- | From: Thomas CORNET [mailto:[EMAIL PROTECTED]] | Sent: Wednesday, January 15, 2003 7:39 AM | To: Struts Users Mailing List | Subject: RE: How to let a user click a column header to sort data in a tab | le u sing struts? | | | Hello

Re: How to let a user click a column header to sort data in a tab le u sing struts?

2003-01-15 Thread Gemes Tibor
2003. január 15. 14:39 dátummal Thomas CORNET ezt írtad: Hello Do you need this sequence to be full JSP ?? Because JavaScript librairies exist to let you directly sort tables. Thus, no page reload is needed. Sounds interesting! Is it running on the popular browsers? Where can I get this?

AW: [Gurus Invited] Why not an Action Based Validator?

2003-01-15 Thread s . frank
I seriously doubt, that the approach handle (ALL) types of validation in the SAME class is practical: The Validation taht takes place in the from class happens a semantic level: It just checks, wether the entered values are in a valid format(this even applies to mandatory field, as NULL is not a

AW: String , html encoding

2003-01-15 Thread Hirschmann, Bernhard
How can I encode Strings to HTML content. including the special caracters (é, è), because I have bzzarre outpouts. I have the same problem and didn't find a proper solution for it. As far as I understand you have two possibilities: 1.) You use utf-8 as the character set of your JSPs, so the

Can anybody make a recommendation between Struts in Action and StrutsKick Start

2003-01-15 Thread Denis Wang
Thanks a lot! Denis -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: A form with a List

2003-01-15 Thread Sri Sankaran
I don't know what you mean by professionals. However, treating it as some java.lang.Object you can easily accomplish this with a form-bean that has a List of professionals and display the contents of the list in your JSP using a logic:iterate. Am I missing something? Sri -Original

RE: How to let a user click a column header to sort data in a table using struts?

2003-01-15 Thread Heligon Sandra
I seek to use the tag display:table with an aim of offering the sorting by column header. I would wish to know if there is no disavantage to use display:table rather than basic tag HTML. In the display library examples JSP source combine table tag and display:table tag. Why doesn't one use

Re: A form with a List

2003-01-15 Thread ashokd
Hi, Use Dynamic Forms for this functionlity. Go to www.keyboardmonkey.com or you can see running examples: http://www.keyboardmonkey.com/StrutMonkey/monkey-action.do and a better one on http://www.keyboardmonkey.com/StrutMonkey/MonkeyStruts_v2.jsp The site has tutorials as well but I would

Re: How to let a user click a column header to sort data in a tab le u sing struts?

2003-01-15 Thread Thomas CORNET
Isn't it ? This is a friend of mine who has coded it, and it's working well. Check out the attachement. Thomas At 14:40 15/01/2003 +0100, you wrote: 2003. január 15. 14:39 dátummal Thomas CORNET ezt írtad: Hello Do you need this sequence to be full JSP ?? Because JavaScript librairies

RE : RE : Changing the log level of Struts

2003-01-15 Thread Christophe Vigouroux
OK, I'm now using Log4J and it works like i wanted. Thanks! Christophe VIGOUROUX ECILIA -Message d'origine- De : Christophe Vigouroux [mailto:[EMAIL PROTECTED]] Envoyé : mercredi 15 janvier 2003 14:12 À : 'Struts Users Mailing List' Objet : RE : Changing the log level of Struts But I'm

RE: [OT] Bloody Brits

2003-01-15 Thread Chappell, Simon P
Nah, they're only french, so it's not like it matters if we hurt their feelings. ;-) -Original Message- From: Guillaume Labelle [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 14, 2003 6:59 PM To: Struts Users Mailing List Subject: RE: [OT] Bloody Brits Hey watch what you are saying

RE: How to let a user click a column header to sort data in a table using struts?

2003-01-15 Thread Jacob Hookom
!--- DISPLAY TAG --- display:table width=100% name=list display=1 decorator=some_class display:column property=id title=ID decorator= some_class / display:column property=name decorator= some_class / display:column property=type decorator= some_class / /display:table I've listed the

RE: [OT] Bloody Brits

2003-01-15 Thread Chappell, Simon P
standard reply to yanks Strategic withdrawl! Late for how many wars now? huh? noticed that y'all keep asking for our help in the middle east! /standard reply to yanks -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 14, 2003 6:29 PM To:

Re: How to let a user click a column header to sort data in a tab le u sing struts?

2003-01-15 Thread Gemes Tibor
2003. január 15. 14:54 dátummal Thomas CORNET ezt írtad: Isn't it ? This is a friend of mine who has coded it, and it's working well. Check out the attachement. WOW! This works like a charm (thou I need some polishing on date handling). Is this copyrighted under public domain? Tib -- To

Re: Re: AW: Refresh on MSIE, PLEASE HELP!! NOT SOLVED

2003-01-15 Thread tnist
Kiuma, As per Microsoft Support site, you will need to place another set of meta tags after the closing /body tag. This has to do with the way the headers are evaluated and the caching algorithm utilized by IE. So your ending code would look something like this. HTML HEAD TITLE---/TITLE

RE: How to let a user click a column header to sort data in a tab le u sing struts?

2003-01-15 Thread Jacob Hookom
BOMBZ!! That's really cool. It works in Mozilla too FYI. -Jacob | -Original Message- | From: Thomas CORNET [mailto:[EMAIL PROTECTED]] | Sent: Wednesday, January 15, 2003 7:55 AM | To: Struts Users Mailing List | Subject: Re: How to let a user click a column header to sort data in a tab

Using a database with Struts

2003-01-15 Thread Kevin . Bedell
Given the amount of discussion of database usage and O/R mapping I've seen on this list, I thought this article on Jakarta OJB would be interesting to some on the list. Kevin http://www.onjava.com/pub/a/onjava/2003/01/08/ojb.html

RE: [OT] Bloody Brits

2003-01-15 Thread Andrew Hill
snip noticed that y'all keep asking for our help in the middle east! /snip To find it on the map? ;-) hehe C'mon youse blokes - you both know that this sort of things not appropriate in this list... ...until Friday :-) -Original Message- From: Chappell, Simon P [mailto:[EMAIL

RE: [OT] Bloody Brits

2003-01-15 Thread Chappell, Simon P
-Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 15, 2003 8:13 AM To: Struts Users Mailing List Subject: RE: [OT] Bloody Brits snip C'mon youse blokes - you both know that this sort of things not appropriate in this list... ...until Friday

Struts Validator and security roles

2003-01-15 Thread PILGRIM, Peter, FM
Hi Has anyone used the Struts Validator with security roles? What I would like to do validate on fields which depend on the login account detail. It doesn't matter what kind of the credential either user id, realm, or group role but the type will be a java.lang.String. For example role:

Re: How to let a user click a column header to sort data in a tab le u sing struts?

2003-01-15 Thread Thomas CORNET
You can use/modify it as you wish. Anyway, you'll have to modify it to update the style (colors, font) for your application... Thomas At 15:09 15/01/2003 +0100, you wrote: 2003. január 15. 14:54 dátummal Thomas CORNET ezt írtad: Isn't it ? This is a friend of mine who has coded it, and it's

Select sub-app at runtime ?

2003-01-15 Thread Jacques-Olivier Goussard
Hi Does anybody know how one could extend struts to be able to select a subapplication at runtime ? I.e. basically force the servlet to process the request as if it had a sub-app prefix. It seems that simply overwriting the ActionServlet.process() and re-implementing a slightly different version

RE: [Gurus Invited] Why not an Action Based Validator?

2003-01-15 Thread Phase Web and Multimedia
Well, all this would be a mute point if there weren't times when we have to populate collections in an ActionForm so that our jsp page doesn't blow up. If I have errors in my validate on the form level I have to populate collections. Those collections are gathered from my resource layer which

RE: A form with a List

2003-01-15 Thread João Paulo Batistella
Thanks. Professionals is only an example. I tried to say is that I have not only one professional (or something else) but many. As you said, I understand that I can have an attribute that can store these professionals. Can you give me a simple example? This attribute is an array of

Re: Can anybody make a recommendation between Struts in Action and Struts Kick Start

2003-01-15 Thread Puneet Agarwal
Even I was into the same dilemma which one to buy... I then read a lot of reviews and decided that I want Struts in Action first, and I have ordered it from Amazon.com, am waiting for the book now a days..it will take almost 15 days for me to receive the book. I chose this one only because

Re: How to let a user click a column header to sort data in a tab le u sing struts?

2003-01-15 Thread Gemes Tibor
2003. január 15. 15:29 dátummal Thomas CORNET ezt írtad: You can use/modify it as you wish. Anyway, you'll have to modify it to update the style (colors, font) for your application... I tested it on a few browsers: It does work on mozilla, IE, but not on Opera 6.0. It works on konqueror 3.0.4,

RE: A form with a List

2003-01-15 Thread Sri Sankaran
Look at the file logic-iterate.jsp in the struts-exercise-taglib application that ships with Struts. It demonstrates several uses of logic:iterate. It would also help to look at the documentation of logic:iterate tag at http://jakarta.apache.org/struts/userGuide/struts-logic.html#iterate.

Re: AW: Refresh on MSIE, PLEASE HELP!! NOT SOLVED

2003-01-15 Thread kiuma
[EMAIL PROTECTED] ha scritto: Kiuma, As per Microsoft Support site, you will need to place another set of meta tags after the closing /body tag. This has to do with the way the headers are evaluated and the caching algorithm utilized by IE. So your ending code would look something like this.

Re: Struts Validator and security roles

2003-01-15 Thread V. Cekvenich
Another aproach: Call a setter for the role (1) (ex: formBean.setRole(req.getUserPrinicipal) in onSave in action. Now your can call formBean.validate() in your action. And... your formBean class must implement a validate method to do all your logic. This way you can use the same formbean

RE: [Gurus Invited] Why not an Action Based Validator?

2003-01-15 Thread Robert Taylor
I think validation was originally placed in ActionForm in an effort to simplify simple validation on the form fields. From an OO view point, this allows an ActionForm to remain cohesive. It is responsible for providing a simple API to facilitate access to data in the HTTP request. It only makes

Map Backed ActionForm using LinkedListHashMap

2003-01-15 Thread Phase Web and Multimedia
I experimented with using a LinkedListHashMap in order to preserve the order of my Map entries from the jsp form into the ActionForm (map backed). It appears that the population of my LinkedListHashMap does not preserve the form order. I assume this is due to how the ActionServlet populates the

RE: Can anybody make a recommendation between Struts in Action and Struts Kick Start

2003-01-15 Thread Durham David Cntr 805CSS/SCBE
I've read Struts in Action. It seems to me that it is dummied a bit, but still a very good book. I don't know about Struts Kick Start. Has anyone read Programming Jakarta Struts from O'Reilly? -Original Message- From: Puneet Agarwal [mailto:[EMAIL PROTECTED]] Sent: Wednesday,

RE: How to let a user click a column header to sort data in a tab le u sing struts?

2003-01-15 Thread Jose Ramon Diaz
It´s fantastic!! Is it free to use? -Mensaje original- De: Gemes Tibor [mailto:[EMAIL PROTECTED]] Enviado el: 15 de enero de 03 15:10 Para: Struts Users Mailing List Asunto: Re: How to let a user click a column header to sort data in a tab le u sing struts? 2003. január 15. 14:54

RE: Struts horizontal menu

2003-01-15 Thread Haseltine, Celeste
Sandra, Have you looked at using HierMenu's? It's a JS menu with a LOT of functionality in it. There is also an article on adapting it to work with Struts, but I had already adapted the Heir Menu's to dynamically create a menu based on the user's previous chosen preferences, which are stored

Re: Map Backed ActionForm using LinkedListHashMap

2003-01-15 Thread David Graham
I believe the problem is that HTTP and consequently ServletRequest.getParameterNames() does not guarantee the order of the returned parameters. This makes it rather difficult to maintain your order. David From: Phase Web and Multimedia [EMAIL PROTECTED] Reply-To: Struts Users Mailing

RE: Need Dynamic Form Beans feature for Struts1.0.2

2003-01-15 Thread Yuan, Saul (TOR-ML)
Can you give me more details, like what jar files, where to get them and how to use them etc... Thanks a lot, Saul -Original Message- From: ashokd [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 15, 2003 12:55 AM To: Struts Users Mailing List Subject: Re: Need Dynamic Form Beans

Un Subscribe

2003-01-15 Thread ak583
Please remove me from the mailing list. Thanks. Amit. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Define tile definition

2003-01-15 Thread Jee Tzee Ming
I have added the following to struts-config.xml plug-in className=org.apache.struts.tiles.TilesPlugin set-property property=definitions-config value=/WEB-INF/tiles-defs.xml / set-property property=moduleAware value=true / set-property

RE: [Gurus Invited] Why not an Action Based Validator?

2003-01-15 Thread Phase Web and Multimedia
Wow! I am glad to hear I am not alone ;-) For a second there I thought I was being one of those obstinate fools who can't see the forest for the trees. :-)) Brandon Goodin Phase Web and Multimedia P (406) 862-2245 F (406) 862-0354 [EMAIL PROTECTED] http://www.phase.ws -Original

RE: Un Subscribe

2003-01-15 Thread Durham David Cntr 805CSS/SCBE
Sure, what's your password? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 15, 2003 9:21 AM To: [EMAIL PROTECTED] Subject: Un Subscribe Please remove me from the mailing list. Thanks. Amit. -- To unsubscribe,

RE: Struts horizontal menu

2003-01-15 Thread Raible, Matt
Checkout struts-menu at http://sourceforge.net/forum/forum.php?forum_id=241446 - I recently added functionality for coolmenus4 and dhtml list menus like this one: http://www.gazingus.org/html/menuExpandable.html For more information on improvements I made, check out:

RE: Map Backed ActionForm using LinkedListHashMap

2003-01-15 Thread Phase Web and Multimedia
Actually, the order is preserved in the request according to the order they appear in you html page. Brandon Goodin Phase Web and Multimedia P (406) 862-2245 F (406) 862-0354 [EMAIL PROTECTED] http://www.phase.ws -Original Message- From: David Graham [mailto:[EMAIL PROTECTED]] Sent:

RE: Struts horizontal menu

2003-01-15 Thread Raible, Matt
One problem with HeirMenus is they now charge for it - doh! http://www.webreference.com/cgi-bin/hier/index.cgi CoolMenus offers the same functionality, and it's free: http://www.dhtmlcentral.com/projects/coolmenus/?m=10 -Original Message- From: Haseltine, Celeste [mailto:[EMAIL

Reverse Validation

2003-01-15 Thread Raible, Matt
I've seen the html:errors property=propertyName/ tag, and I'm hoping I can use it. I have a page that is a web-version of an Excel workbook, with 3 spreadsheets. I am retrieving, from a database, a parent object with ArrayLists of 4 children. The first three children are worksheets per se, and

RequiredIf Example

2003-01-15 Thread Weber, Jeremy
Can someone post the necessary code to show a working requiredif validation. I can seem to get this going per my prior post (attached). Hello all, I have a field that I wish to validate based on the results of another field. The other field 'useSecure' returns a string of true or false from 2

RE: Un Subscribe

2003-01-15 Thread Mark Galbreath
No. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 15, 2003 10:21 AM Please remove me from the mailing list. Thanks. Amit. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: Map Backed ActionForm using LinkedListHashMap

2003-01-15 Thread Gemes Tibor
2003. január 15. 16:41 dátummal Phase Web and Multimedia ezt írtad: Actually, the order is preserved in the request according to the order they appear in you html page. I would not depend on this because the spec says that the order is indefinit. It might vary depending on the browsers eg.

Re: Un Subscribe

2003-01-15 Thread Mark Lepkowski
To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] Please remove me from the mailing list. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: Map Backed ActionForm using LinkedListHashMap

2003-01-15 Thread Mark Galbreath
Absolutely...form objects are returned as an array which elements coincide with the form element order. Think of how you use JavaScript to access the array of objects at the page level. Mark -Original Message- From: Phase Web and Multimedia [mailto:[EMAIL PROTECTED]] Sent: Wednesday,

RE: Un Subscribe

2003-01-15 Thread Simon . Brunner
Please remove me from the mailing list. Thanks. Amit. Enter your credit card information here your request will be processed as soon as possible :-) -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: How to Access an Application Scope object in a Struts Action Class

2003-01-15 Thread Haseltine, Celeste
Mark, I think I was working too many hours yesterday, and my brain shut off. Thanks!!! Celeste -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 14, 2003 6:58 PM To: 'Struts Users Mailing List' Subject: RE: How to Access an Application Scope

S in Action Vs S Kick Start [Was: Can anybody make a recommendation between Struts in Action and Struts Kick Start]

2003-01-15 Thread Puneet Agarwal
But Struts Kick Start is going for reprint in February and they are making changes too... Not the right time to buy this one now... - Original Message - From: Durham David Cntr 805CSS/SCBE [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED]; Puneet Agarwal [EMAIL PROTECTED]

RE: A form with a List

2003-01-15 Thread João Paulo Batistella
Thanks again. But my doubt is not how to use iterate tag. It's how to model the form that store the list of professionals (or anything else). Thanks, Joao Paulo. Sri Sankaran [EMAIL PROTECTED] wrote:Look at the file logic-iterate.jsp in the struts-exercise-taglib application that ships with

RE: Map Backed ActionForm using LinkedListHashMap

2003-01-15 Thread Phase Web and Multimedia
true. My sort works great so I'll just stick with that. P.S. Gemes! you are question answering machine today :-) Brandon Goodin Phase Web and Multimedia P (406) 862-2245 F (406) 862-0354 [EMAIL PROTECTED] http://www.phase.ws -Original Message- From: Gemes Tibor [mailto:[EMAIL

RE: S in Action Vs S Kick Start [Was: Can anybody make a recommendation between Struts in Action and Struts Kick Start]

2003-01-15 Thread Mark Galbreath
Read it? I helped edit it - see the acknowledgements at the beginning of the book. It's the best of the lot. Mark - Original Message - From: Durham David Cntr 805CSS/SCBE [EMAIL PROTECTED] Sent: Wednesday, January 15, 2003 3:11 PM Has anyone read Programming Jakarta Struts from

RE: Un Subscribe

2003-01-15 Thread Durham David Cntr 805CSS/SCBE
Please sign your emails with Flamebait. Thanks. Dave. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 15, 2003 9:21 AM To: [EMAIL PROTECTED] Subject: Un Subscribe Please remove me from the mailing list. Thanks. Amit.

RE: S in Action Vs S Kick Start [Was: Can anybody make a recommendation between Struts in Action and Struts Kick Start]

2003-01-15 Thread Jacques-Olivier Goussard
I use it. It's really comprehensive. When I evaluated the available books, it seemed from far the best. -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 15, 2003 10:48 AM To: 'Struts Users Mailing List' Subject: RE: S in Action Vs S Kick

RE: Un Subscribe

2003-01-15 Thread Greg.Reddin
You can check out any time you like, but you can never leave... -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED] -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL

Re: Map Backed ActionForm using LinkedListHashMap

2003-01-15 Thread Gemes Tibor
2003. január 15. 16:56 dátummal Phase Web and Multimedia ezt írtad: true. My sort works great so I'll just stick with that. I reckon a case in which I was sure that only a few browser types will access a page. In this situation I had a few fields with the same property. They were populated

Extends HttpJspPage

2003-01-15 Thread Hoang, Hai
Hi all, I've a bunch of variables such as locale, timezone, userContainer, and etc. I want to make them available to all jsp pages. Right now they're located in the global.jsp page and I included them on every single page that needs these variables. I hate doing this and I wish somehow I can

  1   2   3   >