Hi,
I have a requirement to stop a node click causing a submission, under some circumstances.
So I call the following function onClientNodeClicked
I have a requirement to stop a node click causing a submission, under some circumstances.
So I call the following function onClientNodeClicked
function
CheckForSave(sender, eventArgs)
{
eventArgs.set_cancel(
true);
}
However I get an error: Object does not support this property or method - suggesting set_cancel no longer exists.
Anyone know how I can cancel this node posting?
Thanks
JC