You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@struts.apache.org by "Ted Husted (JIRA)" <ji...@apache.org> on 2008/01/24 14:03:16 UTC

[jira] Commented: (WW-2171) Label tag does not use key attribute to lookup value in resources when using simple theme

    [ https://issues.apache.org/struts/browse/WW-2171?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=43088#action_43088 ] 

Ted Husted commented on WW-2171:
--------------------------------

I think this commit missed today's build, Maja, but if you can grab the JAR tomorrow, and try it in your application, that would be great!

 * http://people.apache.org/builds/struts/nightlies/2.x/



> 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: Plugin - Tags
>    Affects Versions: 2.0.9
>            Reporter: Maja S Bratseth
>            Assignee: Ted Husted
>            Priority: Minor
>             Fix For: 2.1.1
>
>         Attachments: label-patch.txt
>
>
> 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.