找不到成员,igGrid
Member not found, igGrid
我正在使用基础架构的 igGrid。它在 IE 11 中运行良好,但在 IE7
中出错
member not found
在 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
- 所有
Ignite UI
控件和igGrid
分别支持IE7以上
到版本 12.2.
自 January 12th, 2016, 起,Microsoft 未正式支持此浏览器
要么。
12.2 以上的版本不保证与 IE7 的兼容性。
我不知道出了什么问题。我只是将 "aria-label"
(带双逗号)更改为 arialabel
(不带逗号和连字符)并且有效。也许有人可以更好地解释它。
我正在使用基础架构的 igGrid。它在 IE 11 中运行良好,但在 IE7
中出错member not found
在 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
- 所有
Ignite UI
控件和igGrid
分别支持IE7以上 到版本 12.2. 自 January 12th, 2016, 起,Microsoft 未正式支持此浏览器 要么。
12.2 以上的版本不保证与 IE7 的兼容性。
我不知道出了什么问题。我只是将 "aria-label"
(带双逗号)更改为 arialabel
(不带逗号和连字符)并且有效。也许有人可以更好地解释它。