This is utterly perplexing.

When submitting a form in error, the validation decorator properly adds the
"error" class to my LABEL tags, with one exception: if a LABEL already has a
class name, the "error" class isn't being appended in Internet Explorer.

Example:
<label for="email" class="required">E-mail Address:
   <stripes:text name="email" id="email" />
</label>

On error:
<label for="email" class="required error">E-mail Address:
   <stripes:text name="email" id="email" class="error" />
</label>

But in Internet Explorer, I get this:
<label for="email" class="required">E-mail Address:
   <stripes:text name="email" id="email" class="error" />
</label>

It's almost feels like the class name isn't being properly surrounded by
quotes, thus IE sees this:
<label for=email class=required error>E-mail Address: [...]

Any ideas? (stripes v1.4.3)

-- 
View this message in context: 
http://www.nabble.com/Validation-problems-with-Internet-Explorer-and-LABEL-tp18198549p18198549.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

Reply via email to