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.
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
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
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
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.
--
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
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