1

我正在使用基础架构的 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
4

2 回答 2

2
  • 所有Ignite UI控件并分别igGrid支持 IE7 至 12.2 版本。
  • 截至2016 年 1 月 12 日, Microsoft 也不正式支持此浏览器。

    高于 12.2 的版本不保证与 IE7 的兼容性。

于 2016-04-01T12:47:45.087 回答
0

我不知道是什么问题。我只是将"aria-label"(带双逗号)更改为arialabel(不带逗号和连字符)并且它起作用了。可能有人可以更好地解释它。

于 2016-04-01T13:29:33.693 回答