You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@struts.apache.org by "Henri Yandell (JIRA)" <ji...@apache.org> on 2007/02/14 23:46:16 UTC

[jira] Updated: (STR-2893) doesn't render the focus javascript compliant with xhtml

     [ https://issues.apache.org/struts/browse/STR-2893?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Henri Yandell updated STR-2893:
-------------------------------

    Fix Version/s: 1.4.0

This seems like something we can easily take care of for the 1.4 release.

> <html:form> doesn't render the focus javascript compliant with xhtml
> --------------------------------------------------------------------
>
>                 Key: STR-2893
>                 URL: https://issues.apache.org/struts/browse/STR-2893
>             Project: Struts 1
>          Issue Type: Bug
>          Components: Taglibs
>    Affects Versions: 1.2 Family
>         Environment: Windows XP SP2, IBM Think Centre
>            Reporter: Tedy Marcos Colombini
>            Priority: Trivial
>             Fix For: 1.4.0
>
>
> Taking a look at the FormTag code (precisely, the renderFocusJavascript() method), I found this:
>         // xhtml script content shouldn't use the browser hiding trick
>         if (!this.isXhtml()) {
>             results.append("  <!--");
>             results.append(lineEnd);
>         }
> I guess the if statement should be the opposite, since we need javascript code inside <!-- ... --> for xhtml compliance, don't we?
> Also, the following snippet doesn't need the !this.isXhtml() check...
>         if (!this.isXhtml() && this.scriptLanguage) {
>             results.append(" language=\"JavaScript\"");
>         }
> Regards, Tedy.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.