You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Igor Vaynberg (JIRA)" <ji...@apache.org> on 2008/11/19 22:06:44 UTC

[jira] Resolved: (WICKET-1943) Wicket is changing the HTML within an input tag, autocomplete attribute from off to false

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

Igor Vaynberg resolved WICKET-1943.
-----------------------------------

       Resolution: Duplicate
    Fix Version/s: 1.3.6
         Assignee: Igor Vaynberg

> Wicket is changing the HTML within an input tag, autocomplete attribute from off to false
> -----------------------------------------------------------------------------------------
>
>                 Key: WICKET-1943
>                 URL: https://issues.apache.org/jira/browse/WICKET-1943
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket
>    Affects Versions: 1.3.5
>         Environment: Using Wicket 1.3.5, JDK 6, on Glassfish V2, and Firefox 3.0.3
>            Reporter: Pranav Kacholia
>            Assignee: Igor Vaynberg
>            Priority: Minor
>             Fix For: 1.3.6
>
>
> To prevent Firefox from using its Autocomplete feature on input fields, it is recommend that you use autocomplete='off' as an attribute within the input tag. 
> However, wicket reads this and changes it to autocomplete = 'false'
> Hence a tag which initially reads 
> <input wicket:id="footag" autocomplete="off" />
> , gets rendered by wicket as 
> <input id="fooTag3" name="fooTag" value="" autocomplete="false" wicket:id="footag"/>
> This then does not work with firefox or internet explorer. Autocomplete is not an html standard, however wicket should not be changing the html attributes.

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