You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Martin Bednar (JIRA)" <ji...@apache.org> on 2009/01/05 13:59:44 UTC

[jira] Created: (WICKET-2002) Palette's Choice component break XHTML validation

Palette's Choice component break XHTML validation
-------------------------------------------------

                 Key: WICKET-2002
                 URL: https://issues.apache.org/jira/browse/WICKET-2002
             Project: Wicket
          Issue Type: Bug
          Components: wicket-extensions
    Affects Versions: 1.4-RC1
            Reporter: Martin Bednar
            Priority: Trivial


onFocus attribute in XHTML must be in lowercase.

		if (onFocus != null) {
			attrs.put("onFocus", onFocus);
		}

shoud be:

		if (onFocus != null) {
			attrs.put("onfocus", onFocus);
		}


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


[jira] Updated: (WICKET-2002) Palette's Choice and Selection component break XHTML validation

Posted by "Martin Bednar (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/WICKET-2002?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Martin Bednar updated WICKET-2002:
----------------------------------

    Summary: Palette's Choice and Selection component break XHTML validation  (was: Palette's Choice component break XHTML validation)

> Palette's Choice and Selection component break XHTML validation
> ---------------------------------------------------------------
>
>                 Key: WICKET-2002
>                 URL: https://issues.apache.org/jira/browse/WICKET-2002
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket-extensions
>    Affects Versions: 1.4-RC1
>            Reporter: Martin Bednar
>            Priority: Trivial
>
> onFocus attribute in XHTML must be in lowercase.
> 		if (onFocus != null) {
> 			attrs.put("onFocus", onFocus);
> 		}
> shoud be:
> 		if (onFocus != null) {
> 			attrs.put("onfocus", onFocus);
> 		}

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


[jira] Resolved: (WICKET-2002) Palette's Choice and Selection component break XHTML validation

Posted by "Juergen Donnerstag (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/WICKET-2002?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Juergen Donnerstag resolved WICKET-2002.
----------------------------------------

       Resolution: Fixed
    Fix Version/s: 1.4-RC2
         Assignee: Juergen Donnerstag

thanks

> Palette's Choice and Selection component break XHTML validation
> ---------------------------------------------------------------
>
>                 Key: WICKET-2002
>                 URL: https://issues.apache.org/jira/browse/WICKET-2002
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket-extensions
>    Affects Versions: 1.4-RC1
>            Reporter: Martin Bednar
>            Assignee: Juergen Donnerstag
>            Priority: Trivial
>             Fix For: 1.4-RC2
>
>
> onFocus attribute in XHTML must be in lowercase.
> 		if (onFocus != null) {
> 			attrs.put("onFocus", onFocus);
> 		}
> shoud be:
> 		if (onFocus != null) {
> 			attrs.put("onfocus", onFocus);
> 		}

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