Just in case this happens for anyone else, I was able to fix my jumping issue by assigning a static height to the treeview control.
<div id=
"file-treeview"
style=
"height: 400px;"
></div>
Another way I had some success with it is by removing the click event on the treeview control and assigning click events to all the k-item nodes. Then IE wasn't trying to focus the entire thing widget.
$(
"#file-treeview"
).off(
"click"
);
$(
"#file-treeview .k-item"
).on(
"click"
,
function
(e) {
console.log(e.currentTarget.dataset.uid);
});
Cheers