我使用的是基础设施igGrid。它在IE 11中运行良好,但在IE7中出现错误
成员未找到
在下面一行的infragistics.lob.js文件中
return $(markup).append(headerText).attr({id:this.id()+"_"+column.key,role:"columnheader","aria-label":column.headerText,tabIndex:this.options.tabIndex}).addClass(headerClass).addClass(customClass).data("columnIndex",index)请帮我解决这个问题。
编辑
我转到infragistics.lob.js文件来检查第一个注释中建议的一些值。
console.log(this.id()); // output: id of table to with data is bount
console.log(column.key); // Key column name (RecordId)
console.log(column.headerText); // Key column name (RecordId)
console.log(this.options.tabIndex); // 0发布于 2016-04-01 13:29:33
我不知道是怎么回事。我刚刚把"aria-label" (用双逗号)打到了arialabel (没有逗号和连字符),它起作用了。也许有人能更好地解释。
发布于 2016-04-01 12:47:45
Ignite UI控件和igGrid分别支持12.2版的IE7。https://stackoverflow.com/questions/36350025
复制相似问题