Re: [jira] [Updated] (WW-3375) inside is not being processed -- entire conditional is ignored.

2011-12-10 Thread awhodgson
Please can you remove me from the jira mailing list.

Regards,

Andrew Hodgson
Sent from my BlackBerry® wireless device

-Original Message-
From: "Lukasz Lenart (Updated) (JIRA)" 
Date: Fri, 9 Dec 2011 11:10:40 
To: 
Reply-To: dev@struts.apache.org
Subject: [jira] [Updated] (WW-3375)  inside  is not being
 processed -- entire conditional is ignored.


 [ 
https://issues.apache.org/jira/browse/WW-3375?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Lukasz Lenart updated WW-3375:
--

Fix Version/s: 3.x

>  inside  is not being processed -- entire conditional is ignored.
> --
>
> Key: WW-3375
> URL: https://issues.apache.org/jira/browse/WW-3375
> Project: Struts 2
>  Issue Type: Bug
>  Components: Plugin - Tags
>Affects Versions: 2.1.8
> Environment: Glassfish v2.1.1
>Reporter: Sam Sorrell
>Priority: Minor
> Fix For: 3.x
>
>
> When an "if" tag is placed within a "url" tag, the "if" tag is completely 
> ignored.  For the following example the resulting url will not have a "page" 
> parameter regradless of the value of "parameter". 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> By contrast, the following less concise version has the "page" parameter:
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




Re: Two quickies about configuration property names

2011-12-10 Thread Johannes Geppert
+1

Thats a good point for the next Major release.

Johannes

-
web: http://www.jgeppert.com
twitter: http://twitter.com/jogep
--
View this message in context: 
http://struts.1045723.n5.nabble.com/Two-quickies-about-configuration-property-names-tp5063501p5064102.html
Sent from the Struts - Dev mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: dev-unsubscr...@struts.apache.org
For additional commands, e-mail: dev-h...@struts.apache.org



Re: [jira] [Updated] (WW-3375) inside is not being processed -- entire conditional is ignored.

2011-12-10 Thread Rene Gielen
Please unsubscribe yourself. See http://struts.apache.org/dev/dev-mail.html


On 09.12.11 12:13, awhodg...@dsl.pipex.com wrote:
> Please can you remove me from the jira mailing list.
>
> Regards,
>
> Andrew Hodgson
> Sent from my BlackBerry® wireless device
>
> -Original Message-
> From: "Lukasz Lenart (Updated) (JIRA)" 
> Date: Fri, 9 Dec 2011 11:10:40 
> To: 
> Reply-To: dev@struts.apache.org
> Subject: [jira] [Updated] (WW-3375)  inside  is not being
>  processed -- entire conditional is ignored.
>
>
>  [ 
> https://issues.apache.org/jira/browse/WW-3375?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
>  ]
>
> Lukasz Lenart updated WW-3375:
> --
>
> Fix Version/s: 3.x
> 
>

-- 
René Gielen
http://twitter.com/rgielen


-
To unsubscribe, e-mail: dev-unsubscr...@struts.apache.org
For additional commands, e-mail: dev-h...@struts.apache.org



cssErrorClass not working

2011-12-10 Thread xcoder
suppose there is a  within which there is a 

When the form is submitted and there is a validation error, which results in
adding a fielderror associated with the name field, then the css of that
fielderror is errorMessage rather that what I have specified "myerrorclass".

I guess this is a bug in struts2.2.3. Any help is appreciated on why the
cssErrorClass is not working.



--
View this message in context: 
http://struts.1045723.n5.nabble.com/cssErrorClass-not-working-tp5064663p5064663.html
Sent from the Struts - Dev mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: dev-unsubscr...@struts.apache.org
For additional commands, e-mail: dev-h...@struts.apache.org



Re: cssErrorClass not working

2011-12-10 Thread Dave Newton
On Sat, Dec 10, 2011 at 12:02 PM, xcoder wrote:
> suppose there is a  within which there is a  cssErrorClass="myerrorclass" name="name" label="Enter your name"/>
>
> When the form is submitted and there is a validation error, which results in
> adding a fielderror associated with the name field, then the css of that
> fielderror is errorMessage rather that what I have specified "myerrorclass".
>
> I guess this is a bug in struts2.2.3. Any help is appreciated on why the
> cssErrorClass is not working.

As currently implemented, the `cssErrorClass` attribute is meant for
the input element itself, not the error message.

IMO having them be the same class could lead to issues; for example,
it's common to outline the input element in red, but outlining the
message itself in red would be undesirable.

Dave

-
To unsubscribe, e-mail: dev-unsubscr...@struts.apache.org
For additional commands, e-mail: dev-h...@struts.apache.org



Re: cssErrorClass not working

2011-12-10 Thread xcoder
thanx

On Sat, Dec 10, 2011 at 11:21 PM, Dave Newton-6 [via Struts] <
ml-node+s1045723n5064728...@n5.nabble.com> wrote:

> On Sat, Dec 10, 2011 at 12:02 PM, xcoder wrote:
> > suppose there is a  within which there is a  > cssErrorClass="myerrorclass" name="name" label="Enter your name"/>
> >
> > When the form is submitted and there is a validation error, which
> results in
> > adding a fielderror associated with the name field, then the css of that
> > fielderror is errorMessage rather that what I have specified
> "myerrorclass".
> >
> > I guess this is a bug in struts2.2.3. Any help is appreciated on why the
> > cssErrorClass is not working.
>
> As currently implemented, the `cssErrorClass` attribute is meant for
> the input element itself, not the error message.
>
> IMO having them be the same class could lead to issues; for example,
> it's common to outline the input element in red, but outlining the
> message itself in red would be undesirable.
>
> Dave
>
> -
> To unsubscribe, e-mail: [hidden 
> email]
> For additional commands, e-mail: [hidden 
> email]
>
>
>
> --
>  If you reply to this email, your message will be added to the discussion
> below:
>
> http://struts.1045723.n5.nabble.com/cssErrorClass-not-working-tp5064663p5064728.html
>  To unsubscribe from cssErrorClass not working, click 
> here
> .
> NAML
>



-- 
Regards
Nitin
XCoderZ~~


--
View this message in context: 
http://struts.1045723.n5.nabble.com/cssErrorClass-not-working-tp5064663p5064771.html
Sent from the Struts - Dev mailing list archive at Nabble.com.