You can find event functions in tree2/script/ob_events_xxxx.js
You can either modify default function, or add one using script tag directly to page, placing it just after </html> tag.
For example - event handler function for OnNodeSelect:
function ob_OnNodeSelect(id)
{
alert(id);
}
All client-side events are enabled by default.
|