作成日: 2020/02/26 最終更新日: 2020/03/12
文書種別
不具合
発生環境
IE11
状況
修正済み
詳細
'prototype.js'とInputManのコントロールを同じページで使用した場合、ページのポストバックを行うとInputManのJavaScriptコードの処理で例外が発生します。
回避方法
Service Pack 6(v10.0.4006.2012)で修正済み。
Service Pack を適用せずに対処する方法としては、以下のJavaScriptコードをページのヘッダータグに追加します。
Service Pack を適用せずに対処する方法としては、以下のJavaScriptコードをページのヘッダータグに追加します。
<script type="text/javascript">
window.addEventListener('load', function () {
var oldMethod = GCIM.Utility.FindIMControl;
GCIM.Utility.FindIMControl = function (controlName) {
var imControl = oldMethod(controlName);
if (typeof imControl !== 'object') {
return null;
} else {
return imControl;
}
}
});
</script>
旧文書番号
84961