Re: Accessing "id" bean-property (not tag attribute) in freemarker template

2008-09-29 Thread Pascal Lalonde
--- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-m

Re: two forms, two submits

2008-09-22 Thread Pascal Lalonde
I guess you should be more specific about the problem, what is the theme you are using ? The answer to your question is yes, it is working intuitively, as I use it in my own projects. - Pascal http://www.cameleon-sporting.com cpanon wrote: Hello I have two non-nested forms, each with their

Re: value attribute on

2008-09-12 Thread Pascal Lalonde
ECTED] *** -- *Pascal Lalonde Programmeur Analyste* /Aurora MSC/ 1425 René-Lévesque O Suite 906 Montréal, QC Bur: 514-664-4745 #227 Fax: 514-664-4767 www.auroramsc.com

Re: [S2] client-side validation error message duplication

2008-09-12 Thread Pascal Lalonde
If you are using Spring into your projet, this may be related to the beans being singletons, we had this problem in the past, we actually were required to call cleanErrorsAndMessages method at each prepare call. - Pascal Kawczynski, David wrote: I'm using struts 2.1.2, and the xhtml theme to

Re: [S2]How can I get red error messages?

2008-09-09 Thread Pascal Lalonde
Didn't I read somewhere that one of the good practices was to copy the template folder in the project WEB-INF folder ? If this is true, then just directly edit the style sheet of the theme ? - Pascal Dave Newton wrote: --- On Tue, 9/9/08, Ylva Degerfeldt wrote: Just out of curiosity.. If

Re: NullPointerException with Validation Messages

2008-09-09 Thread Pascal Lalonde
apper.invokeMethod(BeansWrapper.java:835) at freemarker.ext.beans.SimpleMethodModel.exec(SimpleMethodModel.java:106) ... 73 more --------- To unsubscribe, e-m

Browser url & parameters

2008-07-31 Thread Pascal Lalonde
hanks, -- *Pascal Lalonde Programmeur Analyste*

Re: Redirecting to the referring action

2007-07-24 Thread Pascal Lalonde
It may be worth looking at Spring Web Flow, I think it's design to fit that kind of needs. - Pascal Paul Benedict wrote: Mark, I had this same problem :-) One downside of action-based frameworks is that there is no sense of a "page" -- just actions. You need to somehow mark which actions be

Re: How to display the ' character from a .properties file

2007-07-12 Thread Pascal Lalonde
This should be the good solution, that's what we do ... [EMAIL PROTECTED] wrote: try to double the ' ex.: mylabel=I don''t know how If in my .properties file I have text with the ' character my.properties (file) mylabel=I don't know how ... The output doesn't display the ' character

Re: [S2] JAAS & redirection

2007-03-30 Thread Pascal Lalonde
What about internationalization ? James Mitchell wrote: This seems to be a bug in the Struts tags. For now, just use a jsp page that doesn't have any Struts tags in it. Not sure what else to tell you. -- James Mitchell http://jamesmitchell.us On Mar 29, 2007, at 10:43 AM, Pascal La

Re: [S2] JAAS & redirection

2007-03-29 Thread Pascal Lalonde
s Mitchell http://jamesmitchell.us On Mar 29, 2007, at 7:13 AM, Pascal Lalonde wrote: Us we have only elements. Prviously, with webwork, those tags were not problematic and we were also applying the decorator manually. James Mitchell wrote: I was getting the same error when trying to use a form (>

Re: [S2] JAAS & redirection

2007-03-29 Thread Pascal Lalonde
this happens in my app and in the mailreader. -- James Mitchell On Mar 28, 2007, at 3:18 PM, Pascal Lalonde wrote: Hi, We are currently trying to update from webwork to struts 2.0.6, everything looks fine except one thing. The application is deployed into JBoss 4.0.4 and JAAS is enabled

[S2] JAAS & redirection

2007-03-28 Thread Pascal Lalonde
Hi, We are currently trying to update from webwork to struts 2.0.6, everything looks fine except one thing. The application is deployed into JBoss 4.0.4 and JAAS is enabled into our web.xml configuration file. So when trying to access the secure namespace, it does its check and finds out

Re: ajax framework

2007-03-28 Thread Pascal Lalonde
You can take a look to this: http://struts.apache.org/2.x/docs/ajax-tags.html - Pascal temp temp wrote: I have to create highly interactive web page ie use of lot of java script. Are there open source java ajax frameworks where I code only in java and do not write any java scr

Re: Struts 2 newbie question

2007-03-12 Thread Pascal Lalonde
You'll have to modify the associated template within your project. The actual form template (from the default xhtml) is wrapping inputs into a table, each input is appended has a row into it. - Pascal King, Leon C wrote: How do you modify the alignment of a button? Currently I'm using the

redirect-action parameters

2006-11-23 Thread Pascal Lalonde
Based on this sample from the web site documentation: generateReport /genReport pie 100 100 How can I add dynamic parameters ? Here, values are fixed but what if I want to set a dynamic value from the action data ? Based