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