作成日: 2020/11/30 最終更新日: 2021/01/27
文書種別
不具合
状況
修正済み
詳細
コンボボックス型セルを編集中に、[Shift] + [Tab] キーを押下すると、前のセルではなくWorkbookにフォーカスが移動してしまいます。
回避方法
SpreadJS (Ver.14.0.6)で修正済み。
Ver.14.0.6より前のバージョンでは以下のスクリプトを追加してコンボボックス型セルの処理を変更します。
//-------------------------------------------------
var oldFn = GC.Spread.Sheets.CellTypes.ComboBox.prototype.isReservedKey;
GC.Spread.Sheets.CellTypes.ComboBox.prototype.isReservedKey = function (e, context) {
if (e.shiftKey && e.which === 9) {
return false;
}
return oldFn.apply(this, arguments);
};
//-------------------------------------------------
Ver.14.0.6より前のバージョンでは以下のスクリプトを追加してコンボボックス型セルの処理を変更します。
//-------------------------------------------------
var oldFn = GC.Spread.Sheets.CellTypes.ComboBox.prototype.isReservedKey;
GC.Spread.Sheets.CellTypes.ComboBox.prototype.isReservedKey = function (e, context) {
if (e.shiftKey && e.which === 9) {
return false;
}
return oldFn.apply(this, arguments);
};
//-------------------------------------------------
旧文書番号
86226