I've been trying to write a javascript function that uses the GetCheckedNodes() function to return the values of all nodes in the tree that is checked.
The line running the function currently looks like
function nodeEventHandler(treeview, node, eventType)
{
treeview.GetCheckedNodes();
...
...
...
}
However the page errors with 'Object does not support this property or method'
Please can someone provide a code snippet that uses this function so that I can see where I'm going wrong!
Many Thanks