Wijmo FlexGridの表示

このサンプルでは、ドロップダウンプラグインを使用して、ドロップダウンリストをWijmoのFlexGridに表示させる方法を紹介します。

ドロップダウンプラグインを使用して、WijmoのFlexGridコントロールをドロップダウン表示させる方法について解説します。 ドロップダウンオブジェクトの追加 ドロップダウンプラグインを使用する場合、まずcreateDropDownメソッドを使用して、ドロップダウンオブジェクトをInputManJSのコントロールに追加する必要があります。 テキストコントロールにドロップダウンオブジェクトを追加する場合、以下のようなコードになります。 なお、createDropDownメソッドでは、ドロップダウンボタンを配置する位置をパラメータとして、指定することが可能です。設定可能な値(DropDownButtonAlignment列挙体)は、以下の通りです。 値 説明 LeftSide ドロップダウンボタンをコントロールの左側に配置します。 RightSide ドロップダウンボタンをコントロールの右側に配置します。(既定値) FlexGridの表示 FlexGridをドロップダウン表示したい場合、FlexGridをドロップダウンオブジェクトの子ノードとして追加します。なお、FlexGridをドロップダウンに表示する場合には、onOpenメソッドを使用して、ドロップダウンが開いた時にFlexGridを再描画する必要があります。 たとえば、以下のようなコードになります。 選択時の処理 選択時の処理は、FlexGrid側のイベントを使用して行うことになります。具体的には、行が選択されたことを検知(selectionChangedイベント)し、テキストコントロールに選択された値を表示した上でcloseメソッドでドロップダウンを閉じるような処理を実装する必要があります。 たとえば、上記サンプルの場合、以下のコードがFlexGrid側で行が選択された時の処理になります。
import '@mescius/inputman/CSS/gc.inputman-js.css'; import '@mescius/wijmo.styles/wijmo.css'; import './styles.css'; import './license'; import { InputMan } from '@mescius/inputman'; import { FlexGrid, SelectionMode, HeadersVisibility } from '@mescius/wijmo.grid'; import employees from './data'; InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern; // テキストコントロール const gcTextBox = new InputMan.GcTextBox(document.getElementById('gcTextBox')); gcTextBox.selectedIndex = -1; // ドロップダウンプラグイン const gcDropDown1 = gcTextBox.createDropDown(); // ドロップダウンを開いたときに再描画します gcDropDown1.onOpen(() => { if (!gcDropDown1.flexGrid) { // Wijmo FlexGridコントロール gcDropDown1.flexGrid = new FlexGrid(gcDropDown1.getElement().appendChild(document.createElement('div')), { itemsSource: employees, columns: [ { binding: 'id', header: '社員ID', width: 60 }, { binding: 'department', header: '部署', width: 70 }, { binding: 'name', header: '名前', width: 100 }, { binding: 'tel', header: '電話番号', width: 120 }, ], selectionMode: SelectionMode.Row, headersVisibility: HeadersVisibility.Column, selectionChanged: (sender, args) => { if (gcDropDown1.isClosed()) { return; } if (args.row === gcTextBox.selectedIndex) { return; } gcTextBox.selectedIndex = args.row; gcTextBox.setText(employees[args.row].name); gcDropDown1.close(); } }); gcDropDown1.flexGrid.hostElement.style.height = '140px'; } gcDropDown1.flexGrid.select(gcTextBox.selectedIndex, 0); }); // マスクコントロール const gcMask = new InputMan.GcMask(document.getElementById('gcMask')); gcMask.selectedIndex = -1; gcMask.setFormatPattern('\\D{3}-\\D{4}-\\D{4}'); // ドロップダウンプラグイン const gcDropDown2 = gcMask.createDropDown(); // ドロップダウンを開いたときに再描画します gcDropDown2.onOpen(() => { if (!gcDropDown2.flexGrid) { // Wijmo FlexGridコントロール gcDropDown2.flexGrid = new FlexGrid(gcDropDown2.getElement().appendChild(document.createElement('div')), { itemsSource: employees, columns: [ { binding: 'id', header: '社員ID', width: 60 }, { binding: 'department', header: '部署', width: 70 }, { binding: 'name', header: '名前', width: 100 }, { binding: 'tel', header: '電話番号', width: 120 }, ], selectionMode: SelectionMode.Row, headersVisibility: HeadersVisibility.Column, selectionChanged: (sender, args) => { if (gcDropDown2.isClosed()) { return; } if (args.row === gcMask.selectedIndex) { return; } gcMask.selectedIndex = args.row; gcMask.setValue(employees[args.row].tel); gcDropDown2.close(); } }); gcDropDown2.flexGrid.hostElement.style.height = '140px'; } gcDropDown2.flexGrid.select(gcMask.selectedIndex, 0); });
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>ドロップダウンプラグイン - Wijmo FlexGridの表示</title> <!-- SystemJS --> <script src="node_modules/systemjs/dist/system.src.js"></script> <script src="systemjs.config.js"></script> <script> window.onload = function() { System.import('./src/app'); } </script> </head> <body> <div class="flexbox"> <div> 名前<br> <input id="gcTextBox"> </div> <div> 電話番号<br> <input id="gcMask"> </div> </div> </body> </html>
body { padding-bottom: 12rem; }
module.exports = [ { id: 105, department: '第一営業', name: '森上 偉久馬', tel: '09011111111' }, { id: 107, department: '第二営業', name: '葛城 孝史', tel: '09022222222' }, { id: 110, department: '第一営業', name: '加藤 泰江', tel: '09033333333' }, { id: 204, department: '営業開発', name: '川村 匡', tel: '09044444444' }, { id: 207, department: '営業開発', name: '松沢 誠一', tel: '09055555555' }, { id: 210, department: '営業一', name: '成宮 真紀', tel: '09066666666' }, ];
System.config({ transpiler: 'plugin-babel', babelOptions: { es2015: true }, meta: { '*.css': { loader: 'css' } }, paths: { // paths serve as alias 'npm:': 'node_modules/' }, // map tells the System loader where to look for things map: { '@mescius/inputman': 'npm:@mescius/inputman/index.js', '@mescius/inputman/CSS': 'npm:@mescius/inputman/CSS', '@mescius/wijmo': 'npm:@mescius/wijmo/index.js', '@mescius/wijmo.styles': 'npm:@mescius/wijmo.styles', '@mescius/wijmo.cultures': 'npm:@mescius/wijmo.cultures', '@mescius/wijmo.input': 'npm:@mescius/wijmo.input/index.js', '@mescius/wijmo.grid': 'npm:@mescius/wijmo.grid/index.js', 'css': 'npm:systemjs-plugin-css/css.js', 'plugin-babel': 'npm:systemjs-plugin-babel/plugin-babel.js', 'systemjs-babel-build': 'npm:systemjs-plugin-babel/systemjs-babel-browser.js' }, // packages tells the System loader how to load when no filename and/or no extension packages: { src: { defaultExtension: 'js' }, "node_modules": { defaultExtension: 'js' }, } });