[EMAIL PROTECTED] wrote

> But ... I've not found the event name when a user click twice 
> in a row of a QxTree ... It is possible to treat the event 
> (click twice = select it and do something) ?

Easy:

var t = new QxTree("Root");

t.addEventListener("dblclick", function(e) {
    alert (t.getManager().getSelectedItems()[0].getLabel());
}); 

Jason Priebe
CBC New Media 


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642
_______________________________________________
Qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to