My favorites | Sign in
Project Home Downloads
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions
Issue 81: Support for hover events
1 person starred this issue and may be notified of changes. Back to list
Status:  WontFix
Owner:  moo...@wwwendt.de
Closed:  Nov 2010


 
Project Member Reported by moo...@wwwendt.de, Mar 12, 2009
Easy support for implementation of hover events.
(May as well only be a simple example that shows how to use the standard
jQuery technique)
Mar 14, 2009
Project Member #1 moo...@wwwendt.de
$('#tree a').hover would bind it to every sinlge node, which is inefficient (it would
be better to use event delegation).
Also we would have to re-bind after lazy-nodes are expanded.

One improvement would be to add a success callback to the appendAjax() function to
allow postprocessing (rebinding) after the new nodes have been loaded.

Status: Accepted
Owner: moo...@wwWendt.de
Jul 6, 2009
Project Member #2 moo...@wwwendt.de
(No comment was entered for this change.)
Labels: Milestone-Discussion
Feb 16, 2010
Project Member #3 moo...@wwwendt.de
shoiuld be easy to do with  issue 35 
Labels: -Milestone-Discussion Milestone-Release1.0
Nov 6, 2010
Project Member #4 moo...@wwwendt.de
This can be done with standard jQuery:

$("#tree a").hover(function(){
        var node = $(this).parents("[dtnode]").attr("dtnode");
        logMsg("Hover in %s", node);
    }, function(){
        var node = $(this).parents("[dtnode]").attr("dtnode");
        logMsg("Hover out %s", node);
    });
Status: WontFix

Powered by Google Project Hosting