Re: [qooxdoo-devel] question about popup and qx.ui.tree.VirtualTree

2014-05-20 Thread sneaky4oe
Wow, thank you! That'll help me a lot! -- View this message in context: http://qooxdoo.678.n2.nabble.com/question-about-popup-and-qx-ui-tree-VirtualTree-tp7581282p7585700.html Sent from the qooxdoo mailing list archive at Nabble.com.

Re: [qooxdoo-devel] question about popup and qx.ui.tree.VirtualTree

2014-05-20 Thread Daniel Wagner
On 20.05.2014 08:31, sneaky4oe wrote: > Yes, the toolTip is what I was looking for. But could you please be more > specific about what actions should I perform to display a tooltip from one > of elements of a tree? How do I set a toolTip for each individual element? I > already can show a popup by

Re: [qooxdoo-devel] question about popup and qx.ui.tree.VirtualTree

2014-05-19 Thread sneaky4oe
Yes, the toolTip is what I was looking for. But could you please be more specific about what actions should I perform to display a tooltip from one of elements of a tree? How do I set a toolTip for each individual element? I already can show a popup by douvleclick on a tree, which'll show a selecte

Re: [qooxdoo-devel] question about popup and qx.ui.tree.VirtualTree

2014-05-19 Thread Daniel Wagner
Sure, check out the IVirtualTreeDelegate interface: http://demo.qooxdoo.org/current/apiviewer/#qx.ui.tree.core.IVirtualTreeDelegate Depending on your use case, you can use configureItem to set the item's toolTip property, use createItem to return a custom item, use bindItem if the popup needs to

Re: [qooxdoo-devel] question about popup and qx.ui.tree.VirtualTree

2014-05-19 Thread sneaky4oe
Is it possible to open a popup after hovering mouse over a tree element? -- View this message in context: http://qooxdoo.678.n2.nabble.com/question-about-popup-and-qx-ui-tree-VirtualTree-tp7581282p7585675.html Sent from the qooxdoo mailing list archive at Nabble.com. --

Re: [qooxdoo-devel] question about popup and qx.ui.tree.VirtualTree

2012-09-10 Thread Martin Wittemann
Hey, thats a bit tricky because usually the virtual tree is totally model based. But there is a trick you can use: virtualTree.getPane().getLayers()[0].getChildren().forEach(function(child) { if (child.hasState("selected")) { // thats your widget }; }) As you see, you need to rely on some more o

[qooxdoo-devel] question about popup and qx.ui.tree.VirtualTree

2012-09-08 Thread rsantiagopaz
Hi. sorry my english Im working with qx.ui.tree.VirtualTree. And I need open a popup relative to a node, with popup.placeToWidget(node, false);. How can I get the selected node widget? (or with placeToElement or placeToPoint, but how?) thanks -- View this message in context: http://qooxdoo.6