作成日: 2026/04/17 最終更新日: 2026/04/17
文書種別
不具合
状況
回避方法あり
詳細
FlexGridでシフト(Shift)キーを使ったセルの範囲選択は、bigCheckboxesプロパティがtrueに設定されていると動作しません。
回避方法
FlexGridに以下のイベントを追加します。
theGrid1.addEventListener(theGrid1.hostElement, 'click', (e) => {
let grid = theGrid1;
let ht = grid.hitTest(e);
let col = ht.getColumn();
if(grid.bigCheckboxes && col.dataType == wijmo.DataType.Boolean && e.shiftKey){
e.preventDefault();
}
}, true);