1. What I have is a Kendo TreeView control similar to the below structure.
- Parent 1
- Child 1 of Parent 1
- Child 2 of Parent 1
- Parent 2
2. What I need is to trigger an event on Double click of any of the items ( items being : Parent 1,Child 1 of Parent 1,Child 2 of Parent 1,Parent 2)
3. There exists an event for single click, that is .Select(). But I don't seem to find one for double click.
4. Question : Is there any way to trigger a double click event from the control itself, if not, what is the suggested alternate for the same?