$('#pageTreeExplorer').on('igtreenodeclick', function (evt, ui) {
alert('Hola')
}
I see nodeclick working, but nodedoubleclick is not triggering on igTree.
Any setting required to trigger nodedouble click ?
I updated the example on http://www.igniteui.com/tree/api-and-events
to include node double click, but no luck.
$("#tree").on("igtreenodedoubleclick", function (evt, ui) { apiViewer.log("igtreenodedoubleclick: [ " + "Node Double Clicked: " + ui.node.data.Text + "]"); focusOnMobile(); });
C R said: I updated the example on http://www.igniteui.com/tree/api-and-events to include node double click, but no luck. $("#tree").on("igtreenodedoubleclick", function (evt, ui) { apiViewer.log("igtreenodedoubleclick: [ " + "Node Double Clicked: " + ui.node.data.Text + "]"); focusOnMobile(); });
When I double click, the node click event, following by selectionchangedevent, and then node click event is triggered.
Why is not node double click triggered ?
Help needed please
Any help please...
Infragistics Support Team ..
Any pointers for me to explore ...
You are just awesome.
Thank you very much.
I also got to see usage of jsfiddle with your example. Double awesome.
Hello CR,
Thank you for using our community.
I have investigated your sample and noted that you use ui.node.data.Text, which is causing an error because the ui object doesn’t have a node member and that is why you don’t see the log in the apiViewer. Change this to ui.data.Text and it will work as expected. What is more I have updated the sample for your facilitation. Please take a look at it and let me know if you have any questions.
http://jsfiddle.net/cnmLvzv9/2/
Best Regards, Marina Stoyanova, Software Developer, Infragistics, Inc.