Label tag does not use key attribute to lookup value in resources when using
simple theme
-----------------------------------------------------------------------------------------
Key: WW-2171
URL: https://issues.apache.org/struts/browse/WW-2171
Project: Struts 2
Issue Type: Bug
Components: Views
Affects Versions: 2.0.9
Reporter: Maja S Bratseth
Priority: Minor
When using the simple theme (setting property "struts.ui.theme" to "simple"),
the struts label tag does not use the key attribute to look up label value in
resources.
It does when using the css_xhtml theme.
Example jsp fragment:
<s:label key="company.name"/>
Resource file fragment:
company.name=Company name
Html produced by css_xhtml theme (minus some space and divs):
<label class="label" for="xxxxx_company_name">Company name:</label>
(I am not sure where the "for" attribute comes from. I suspect that the html
label tag is produced
by css_xhtml/controlheader-core.ftl).
Html produced by simple theme:
<label id="xxxxx_company_name"/>
Html that I expected simple theme to produce:
<label id="xxxxx_company_name">Company name</label>
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.