【发布时间】:2016-04-01 07:05:07
【问题描述】:
我正在使用基础架构的 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
【问题讨论】:
-
this.id()看到这个或您所指的其他对象键,例如column.key, column.headerText, this.options.tabIndex。 -
@Jai,感谢您的评论,我在我的问题中添加了一些观察结果。
标签: jquery asp.net infragistics ignite-ui iggrid