Any issues with using OGNL ver 2.7.3

2008-12-07 Thread Adam Ruggles
Are there any known issues with using OGNL 2.7.3 with Struts 2.1.2? -- View this message in context: http://www.nabble.com/Any-issues-with-using-OGNL-ver-2.7.3-tp20889755p20889755.html Sent from the Struts - User mailing list archive at Nabble.com. -

expression validator not playing by the rules

2008-12-07 Thread stanlick
After chasing a CSS issue around tonight, I discovered the following validation is not placing it's message in the collection but rather it is adding to the . Shouldn't the validator be adding to the field errors when a field name is specified? credential.passwordRepe

Re: How to change the param name for paging in the display:table tag

2008-12-07 Thread Yayo
I'll write in Spanish first and some kind of english translation then... Holas Creo que el parámetro ese que dices d-457775-p no creo que sea util para nada de cara al programador. Lo que cuenta es que te envíe el criterio de búsqueda y el número de página cada vez que el usuario pincha en uno de

Re: launching some code after action execution and before result

2008-12-07 Thread Dave Newton
PreResultListener? --- On Sun, 12/7/08, Adam Hardy <[EMAIL PROTECTED]> wrote: > From: Adam Hardy <[EMAIL PROTECTED]> > Subject: launching some code after action execution and before result > To: "Struts Users Mailing List" > Date: Sunday, December 7, 2008, 3:29 PM > Is this possible somehow in

Re: launching some code after action execution and before result

2008-12-07 Thread Musachy Barroso
Use the @BeforeResult annotation: http://struts.apache.org/2.0.14/struts2-core/apidocs/com/opensymphony/xwork2/interceptor/annotations/BeforeResult.html musachy On Sun, Dec 7, 2008 at 3:29 PM, Adam Hardy <[EMAIL PROTECTED]> wrote: > Is this possible somehow in the struts2 framework? > > I'd like

launching some code after action execution and before result

2008-12-07 Thread Adam Hardy
Is this possible somehow in the struts2 framework? I'd like to execute some code for all requests after the action has executed, but before the result, the JSP and all are processed. The code will look at the result type from the action and do some work based on that. Something like an inte

Struts 2 action not posting

2008-12-07 Thread Yayo
Hi, I donno if you can remember this problem I posted once http://webui.sourcelabs.com/struts/mail/user/threads/Action_not_posting.meta Well... I "solved" it the last time taking the div where I was receiving the resulting response and putting it into the s:form I was sending to the server... An

Re: Cannot find bean in any scope

2008-12-07 Thread Nils-Helge Garli Hegvik
>From the taglib reference for "iterate" [1]: id - The name of a page scope JSP bean that will contain the current element of the collection on each iteration, if it is not null. In your example, you have used id="dvds" which means that you would have to use http://struts.apache.org/1.3.8/struts-

Cannot find bean in any scope

2008-12-07 Thread gbattine
Hello guys, I'm newbie of Struts, please help me. I've an action that calls some business logic, retrieve a a list and set it into request, calling later a jsp, in which I try to show this list through iterate tag. this is jsp to show list <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%

Re: JSP tags calling action directives

2008-12-07 Thread Dave Newton
--- On Sun, 12/7/08, Raquel Pau Fernández wrote: > I'm thinking about calling actions code (that perhaps they are not > an URL and then they don't appear in the struts.xml) from JSP > [...] > For instance, in more than one page I could need the list > of users in different formats (combobox, lists

JSP tags calling action directives

2008-12-07 Thread Raquel Pau Fernández
Hello, I'm thinking about calling actions code (that perhaps they are not an URL and then they don't appear in the struts.xml) from JSP pages. Is it possible? I'd want to separate the workflow (success, error, input, etc..) from the necessary business logic for rendering a JSP page. For instance,