This question is locked. New answers and comments are not allowed.
I have this code:
What it is supposed to do is to uncheck all items and just keep the one I selected (i.e. only have one node selected at any time.
It appears to work in IE, but in firefox it doesn't seem to fire (I have added an alert at the beginning of the function for testing and that is not getting hit).
Any help would be appreciated.
function onChecked(e) { var treeView = $("#TreeView").data("tTreeView"); var childNodes = $('#TreeView').find("li").find('> div > .t-checkbox :checkbox') childNodes.each(function (index, element) { treeView.nodeCheck(element, false); });}What it is supposed to do is to uncheck all items and just keep the one I selected (i.e. only have one node selected at any time.
It appears to work in IE, but in firefox it doesn't seem to fire (I have added an alert at the beginning of the function for testing and that is not getting hit).
Any help would be appreciated.
