Error occurs anytime mouse pointer moves over a node or a
node is selected.
I did some debugging and narrowed it down to line oItem.filters.length >
0 it cant seem to find filters property within the oItem object.
Here is a function where this code is executed:
function blurFilter(oItem)
{
if (oItem.id == "_tnaccess")
oItem = oItem.all.item("_tntext", 0);
if (oItem.filters.length > 0)
{
var oFilter =
oItem.filters.item("DXImageTransform.Microsoft.Alpha");
if (oFilter)
{
oFilter.opacity /= 2;
return;
}
}
}
I am not sure what to in this situation, it seems that a component got removed.
Does anyone know what can be done in this situation? Can I reinstall something?
[I tried reinstalling IE: WebControls but that didn’t help].
Your help is greatly appreciated.
Max