You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Andy Chu (JIRA)" <ji...@apache.org> on 2008/02/16 05:52:08 UTC

[jira] Updated: (WICKET-1350) AutoCompleteTextField's *scrolled* suggestion list disappeared when a mouse pointing to the scroll bar in IE6/7

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

Andy Chu updated WICKET-1350:
-----------------------------

    Description: 
if we define the following CCS to fix the height of the suggestion list, the list will become to be scrollable when it is overflow, for example, there are 100 suggestions should be shown.

div.wicket-aa {
	height: 200px;
	overflow: auto;
}

if a user moves his mouse to the scroll bar, the suggestion list will disappear immediately in IE6/7 but  in FF. The reason is that the *onblur* event of the text field is triggered in IE but in FF.  At the moment the mouse pointing to the scroll bar, Wicket.AutoComplete.mouseactive is 0, therefore, hideAutoComplete() is called. That's why the suggestion list  disappeared in IE6/7.




  was:
if we define the following CCS to fix the height of the suggestion list, the list will become to be scrollable when it is overflow, for example, there are 100 suggestions should be shown.

div.wicket-aa {
	height: 200px;
	overflow: auto;
}

if a user move his mouse to the scroll bar, the suggestion list will disappear immediately in IE6/7 but  in FF. The reason is that the *onblur* event of the text field is triggered in IE but in FF.  At the moment the mouse pointing to the scroll bar, Wicket.AutoComplete.mouseactive is 0, therefore, hideAutoComplete() is called. That's why the suggestion list  disappeared in IE6/7.





> AutoCompleteTextField's *scrolled* suggestion list disappeared when a mouse pointing to the scroll bar in IE6/7
> ---------------------------------------------------------------------------------------------------------------
>
>                 Key: WICKET-1350
>                 URL: https://issues.apache.org/jira/browse/WICKET-1350
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket
>    Affects Versions: 1.3.0-final, 1.3.1
>         Environment: IE6/7
>            Reporter: Andy Chu
>
> if we define the following CCS to fix the height of the suggestion list, the list will become to be scrollable when it is overflow, for example, there are 100 suggestions should be shown.
> div.wicket-aa {
> 	height: 200px;
> 	overflow: auto;
> }
> if a user moves his mouse to the scroll bar, the suggestion list will disappear immediately in IE6/7 but  in FF. The reason is that the *onblur* event of the text field is triggered in IE but in FF.  At the moment the mouse pointing to the scroll bar, Wicket.AutoComplete.mouseactive is 0, therefore, hideAutoComplete() is called. That's why the suggestion list  disappeared in IE6/7.

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