In my TreeView, while I have a node selected and I click another node in the tree, if I cancel the select via "e.preventDefault()" in my Select event handler, the selection is cancelled but the node I clicked retains focus. Is there a way of preventing this (removing focus from the node I clicked)? I tried adding code to remove the "k-state-focused" class from the node, but it does not work...
e.preventDefault();
$("#treeview_tv_active span.k-state-focused").removeClass("k-state-focused");
Thanks.
e.preventDefault();
$("#treeview_tv_active span.k-state-focused").removeClass("k-state-focused");
Thanks.