Home - Forums-.NET - FlyTreeView (ASP.NET) - Hooking some events

FlyTreeView (ASP.NET)

Technical support and KB related to the FlyTreeView control

This forum related to following products: FlyTreeView for ASP.NET

Hooking some events
Link Posted: 31-Aug-2009 00:10
Hi, although we think it's a great treeview control but we disappointed after we found that it not possible to hook some javascript events up on nodes like nouseover and mouseup...etc, is there a workaround? If not is it possible to provide that in your next version? it will be a great feature.

Regards.
Link Posted: 31-Aug-2009 19:40
Actually, you can handle. You can put arbitrary HTML into node like
Node Text


Another option, you can set node CSS class to something like "nodeclass"
and use jQuery or similar Javascript framework to setup handlers like this:
$(".nodeclass").mousover(yourfunc).mouseout(yourfunc)....