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 2009/09/23 03:37:16 UTC

[jira] Commented: (WICKET-2455) autocomplete fix for IE6 and IE8

    [ https://issues.apache.org/jira/browse/WICKET-2455?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12758534#action_12758534 ] 

Igor Vaynberg commented on WICKET-2455:
---------------------------------------

have you tested this in ie7, firefox, and safari?

> autocomplete fix for IE6 and IE8
> --------------------------------
>
>                 Key: WICKET-2455
>                 URL: https://issues.apache.org/jira/browse/WICKET-2455
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket-extensions
>            Reporter: Niels Bo
>
> The latest version does not position the autocomplete dropdown correctly in IE6, 
> and the 1.3.6 does not do it in IE8.
> I found that the following is working in both IE6 and IE8
> function showAutoComplete(){
> ....
>         try {
>             //Works for most browsers except for IE6 where it throws a type mismatch error
>             menu.style.zIndex=index=="auto"?index:Number(index)+1;
>         } catch (err) {
>             //This works in IE6 but is no good it other browsers
>             menu.style.zIndex=(Number(index)!=Number.NaN?Number(index)+1:index);
>         }

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