作成日: 2025/11/18 最終更新日: 2025/11/18
文書種別
不具合
発生環境
バージョン5.20251.34でのみ発生
状況
修正済み
詳細
ComboBoxのisEditableプロパティをfalseに設定し、日本語入力(IMEがON)した場合にテキストボックスに入力中の文字が表示されません。
回避方法
この問題はバージョン5.20251.40で修正されました。
修正版を適用しない場合の回避方法は次の通りです。
ComboBoxクラスの_inputメソッド(内部メソッド)を以下のように上書きします。
wijmo.input.ComboBox.prototype._input = function (e) {
if (this._draggingText) {
if (this.text === "") {
this._emptyValueAction = true
} else {
this._emptyValueAction = false
}
}
this._setText(this._textIsComposing != "" ? this._textIsComposing : this.text, false);
if (this.text != "") this._emptyValueAction = false;
this._draggingText = false;
}