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

0

何が問題だったのかわかりません。"aria-label"(ダブルコンマを使用して) (コンマとarialabelハイフンを使用せずに)変更したところ、機能しました。誰かがそれをよりよく説明できるかもしれません。

于 2016-04-01T13:29:33.693 に答える