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:34:08 UTC

[jira] Created: (WICKET-1350) AutoCompleteTextField's *scrolled* suggestion list disappeared when a mouse pointing to the scroll bar 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.1, 1.3.0-final
         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 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.




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


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

Posted by "Andy Chu (JIRA)" <ji...@apache.org>.
     [ 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() was 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 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.





> AutoCompleteTextField's *scrollable* 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() was 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.


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

Posted by "Andy Chu (JIRA)" <ji...@apache.org>.
     [ 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.


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

Posted by "Gerolf Seitz (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/WICKET-1350?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12582247#action_12582247 ] 

Gerolf Seitz commented on WICKET-1350:
--------------------------------------

same issue has been worked on here: http://dev.rubyonrails.org/ticket/4782
i'll take a closer look later today.

> AutoCompleteTextField's *scrollable* 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
>            Assignee: Gerolf Seitz
>             Fix For: 1.3.3
>
>
> 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() was 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.


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

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

Gerolf Seitz resolved WICKET-1350.
----------------------------------

    Resolution: Fixed

simple fix:
add mouseout and mouseover listener to the choiceDiv (instead of  mouseover/mouseout on list-nodes) and set mouseactive accordingly


> AutoCompleteTextField's *scrollable* 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
>            Assignee: Gerolf Seitz
>             Fix For: 1.3.3
>
>
> 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() was 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.


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

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

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

    Summary: AutoCompleteTextField's *scrollable* suggestion list disappeared when a mouse pointing to the scroll bar in IE6/7  (was: AutoCompleteTextField's *scrolled* suggestion list disappeared when a mouse pointing to the scroll bar in IE6/7)

> AutoCompleteTextField's *scrollable* 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.


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

Posted by "Johan Compagner (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/WICKET-1350?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12582188#action_12582188 ] 

Johan Compagner commented on WICKET-1350:
-----------------------------------------

Gerolf can you look at this if it is fixable for 1.3? else change it to 1.4/1.5

> AutoCompleteTextField's *scrollable* 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
>            Assignee: Gerolf Seitz
>             Fix For: 1.3.3
>
>
> 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() was 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.


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

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

Johan Compagner updated WICKET-1350:
------------------------------------

    Fix Version/s: 1.3.3
         Assignee: Gerolf Seitz

> AutoCompleteTextField's *scrollable* 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
>            Assignee: Gerolf Seitz
>             Fix For: 1.3.3
>
>
> 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() was 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.