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

ASF subversion and git services commented on WICKET-6319:
---------------------------------------------------------

Commit befa7f0f7f29bdd43f19c2bd103fb9e92dfc8a11 in wicket's branch 
refs/heads/master from [~mgrigorov]
[ https://git-wip-us.apache.org/repos/asf?p=wicket.git;h=befa7f0 ]

WICKET-6319 AutoCompleteTextField: popup is hidden when clicking on scrollbar 
in IE


> AutoCompleteTextField: popup is hidden when clicking on scrollbar in IE
> -----------------------------------------------------------------------
>
>                 Key: WICKET-6319
>                 URL: https://issues.apache.org/jira/browse/WICKET-6319
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket-extensions
>    Affects Versions: 7.5.0, 7.6.0
>            Reporter: Andreas Kappler
>             Fix For: 7.7.0, 8.0.0-M5
>
>         Attachments: wicket-autocomplete-ie.tar.gz
>
>
> When the user clicks into the text field, a list with suggestions is opened 
> in a popup. When the user scrolls this list by clicking on the vertical 
> scrollbar, the popup disappears.
> Affects IE11 and Edge, not affected is Chrome.
> this seems similar to WICKET-5882
> I have resolved the issue by replacing lines 91+ in wicket-autcomplete.js 
> with the following code:
> {code:java}
> Wicket.Event.add(obj, 'blur', function (jqEvent) {
>         var menuId=getMenuId();
>         //workaround for IE. Clicks on scrollbar trigger
>         //'blur' event on input field. (See 
> https://issues.apache.org/jira/browse/WICKET-5882)
>         if (menuId !== document.activeElement.id && (menuId + "-container") 
> !== document.activeElement.id) {
>           window.setTimeout(hideAutoComplete, 500);
>         } else {
>           jQuery(this).trigger("focus");
>         }
>       });
> {code}
> quickstart attached



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

Reply via email to