Sha256: d6df1bb6ce635108e111ed93b21b2e137937234f832cb0f574c8dc526ffd3883
Contents?: true
Size: 488 Bytes
Versions: 7
Compression:
Stored size: 488 Bytes
Contents
--- title: tree.contextmenu name: event-tree-contextmenu --- Triggered when the user right-clicks a tree node. The event contains the following properties: * **node**: the node that is clicked on * **click_event**: the original click event {% highlight js %} // bind 'tree.contextmenu' event $('#tree1').bind( 'tree.contextmenu', function(event) { // The clicked node is 'event.node' var node = event.node; alert(node.name); } ); {% endhighlight %}
Version data entries
7 entries across 7 versions & 1 rubygems