Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: Release 1.5.2, Release 1.6
-
Component/s: Tag Library
-
Labels:None
-
Environment:Vista 64, Resin 3.0, Resin 3.1, Java 6
Description
Using:
<stripes:submit name="xxx">
<fmt:message key="yyy" />
</stripes:submit>
Results in html markup like:
<input name="xxx" value="
yyy
" type="submit" />
This renders wrong in IE 7 + IE8 - result: extremely large buttons
Work around:
<fmt:message var="msg" key="xxx" />
<stripes:submit name="showAddBundle" value="${msg}" />
NB: The following works fine - however I'm using Eclipse and rely heavily on source formatting (CTRL+SHIFT+F) which will reformat this.
<stripes:submit name="xxx"><fmt:message key="yyy" /></stripes:submit>
Fixed in revision 1142.