I keep getting this exception when I do a kendo.bind
No Such Interface (IE8)
So this exception is triggered while doing a kendo.bind.
The root cause is not in the kendo code is really something in jQuery
Sizzle.contains = function (a, b) {
try {
return a !== b && (a.contains ? a.contains(b) : true); <-- Exception is here
}
catch (err) {
return false;
}
};
I patched my jquery file. It seems to be related to the Kendo Tabs because binding works great in all other pages not using tabs I think is it related with the enabled property of the tab control being bound.
Well I hope this can be fixed, I don't like patching my jquery :)
No Such Interface (IE8)
So this exception is triggered while doing a kendo.bind.
The root cause is not in the kendo code is really something in jQuery
Sizzle.contains = function (a, b) {
try {
return a !== b && (a.contains ? a.contains(b) : true); <-- Exception is here
}
catch (err) {
return false;
}
};
I patched my jquery file. It seems to be related to the Kendo Tabs because binding works great in all other pages not using tabs I think is it related with the enabled property of the tab control being bound.
Well I hope this can be fixed, I don't like patching my jquery :)