Why are you nesting the input tag within the label tag?
This:

<stripes:label for="email" class="required">
  <stripes:text id="email" name="email"/>
</stripes:label>

should be something like:

<stripes:label for="email" class="required" /><stripes:text id="email"
name="email"/>

Shouldn't it?
-Mitch

On Mon, Jun 30, 2008 at 12:39 PM, Matt Brock <[EMAIL PROTECTED]> wrote:

>
> OK, so before I said that nesting stripes input tags
> (text/select/checkbox/etc.) inside of stripes:labels appeared to work
> perfectly.  Looking closer at the HTML generated for IE, it appears that
> the
> input elements NOT in error are getting the class="null" problem when a
> form
> fails validation.  In addition, it looks like random stripes:select
> elements
> are being *dropped* from the form entirely.  The issue is aggravated when
> you use nested property validation.  As soon as you drop the nested
> validation, the form elements render properly (but still get the erroneous
> NULL class name if the field was not in error.)  Apologies for spamming the
> list with so many comments before fully investigating the issue.
> --
> View this message in context:
> http://www.nabble.com/Validation-problems-with-Internet-Explorer-and-LABEL-tp18198549p18200592.html
> Sent from the stripes-users mailing list archive at Nabble.com.
>
>
> -------------------------------------------------------------------------
> Check out the new SourceForge.net Marketplace.
> It's the best place to buy or sell services for
> just about anything Open Source.
> http://sourceforge.net/services/buy/index.php
> _______________________________________________
> Stripes-users mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/stripes-users
>
-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Stripes-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-users

Reply via email to