由于使用Infragistics下的树型控件Infragistics.WebUI.UltraWebNavigator.UltraWebTree,结果导致NodeClicked无响应
排除权限问题后,更改Scripts下/ig_csom.js文件,以便IE8下可正确响应
this.IsIE6 =((navigator.userAgent.indexOf("MSIE 6.0") != -1) && (navigator.userAgent.indexOf("Windows") != -1));
this.IsIE7 =((navigator.userAgent.indexOf("MSIE 7.0") != -1) && (navigator.userAgent.indexOf("Windows") != -1));
this.IsIE8 =((navigator.userAgent.indexOf("MSIE 8.0") != -1) && (navigator.userAgent.indexOf("Windows") != -1));
this.IsIE55Plus =(this.IsIE55 || this.IsIE6|| this.IsIE7|| this.IsIE8);
本文介绍了解决Infragistics UltraWebTree在Internet Explorer 8中点击节点无响应的问题。通过修改ig_csom.js文件中的浏览器版本判断代码,使该控件能在IE8上正常工作。
1382

被折叠的 条评论
为什么被折叠?



