Infragistics NetAdvantage 的 ASP.NET部分控件在IE7.0下不能正常工作的问题及解决

Infragistics NetAdvantage 是一个针对Microsoft开发环境(如Windows Forms, ASP.NET, Tablet PC 和 COM),非常完善的商业用户界面库. Infragistics NetAdvantage 包含了所有必要的界面元素,如grids, scheduling, charting, toolbars, menus, listbars, trees, tabs, explorer bars, UI ,editors等

问题:
tree控件在IE7.0下不能正常工作。如下图

当用户点击树型控件的节点时,页面PostBack后将获取的数据绑定到右边的下拉列表控件。该功能在IE6、FireFox1.5上运行正常。但当我将IE7升级到7.0后,出现上面的问题。

解决方法:
经过分析,发现问题出在站点目录下的infragistics/Scripts/ig_csom.js文件中。
源文件
// ig_csom class implements the basic browser independent functionality
function ig_initcsom()
{
 // Public Properties
 this.ScriptVersion  ="3.1.20042.3";
 
 // navigator.userAgent is not being validated because ig_csom should not be used for unknown browsers.
 this.AgentName   =navigator.userAgent.toLowerCase();
 this.MajorVersionNumber =parseInt(navigator.appVersion);
 this.IsDom    =(document.getElementById)?true:false;
 this.IsNetscape   =(document.layers?true:false);
 this.IsNetscape6  =(this.IsDom&&navigator.appName=="Netscape");
 this.IsOpera   =this.AgentName.indexOf('opera')!=-1;
 this.IsMac    =(this.AgentName.indexOf("mac")!=-1);
 this.IsIE    =(document.all?true:false);
 this.IsIE4    =(document.all&&!this.IsDom)?true:false;
 this.IsIE4Plus   =(this.IsIE && this.MajorVersionNumber >= 4)?true:false;
 this.IsIE5    =(document.all&&this.IsDom)?true:false;
 this.IsIE50    =this.IsIE5&&(this.AgentName.indexOf("msie 5.0")!=-1);
 this.IsWin    =((this.AgentName.indexOf("win")!=-1) || (this.AgentName.indexOf("16bit")!=-1));
 this.IsIE55    =((navigator.userAgent.indexOf("MSIE 5.5") != -1) && (navigator.userAgent.indexOf("Windows") != -1));
 this.IsIEWin   =(this.IsIE && this.IsWin);
 this.IsIE6    =((navigator.userAgent.indexOf("MSIE 6.0") != -1) && (navigator.userAgent.indexOf("Windows") != -1));  
 this.IsIE55Plus   =(this.IsIE55 || this.IsIE6);
 this.IsSafari   =this.AgentName.indexOf('safari')!=-1;
 // Obtains an element object based on its Id

 原来是js函数在判断时不能识别IE7.0。于是我加入以下代码:
 this.IsIE7        =((navigator.userAgent.indexOf("MSIE 7.0") != -1) && (navigator.userAgent.indexOf("Windows") != -1)); 
并将 this.IsIE55Plus   =(this.IsIE55 || this.IsIE6); 修改为 this.IsIE55Plus   =(this.IsIE55 || this.IsIE6 || this.IsIE7);
在使用IE7.0登录系统,一些正常。哦也!!

 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值