SpreadJSの表示

このサンプルでは、ドロップダウンプラグインを使用して、SpreadJSをドロップダウンリストに表示させることを確認できます。

ドロップダウンプラグインを使用して、SpreadJSをドロップダウン表示させる方法について解説します。 ドロップダウンオブジェクトの追加 ドロップダウンプラグインを使用する場合、まずcreateDropDownメソッドを使用して、ドロップダウンオブジェクトをInputManJSのコントロールに追加する必要があります。 テキストコントロールにドロップダウンオブジェクトを追加する場合、以下のようなコードになります。 なお、createDropDownメソッドでは、ドロップダウンボタンを配置する位置をパラメータとして、指定することが可能です。設定可能な値(DropDownButtonAlignment列挙体)は、以下の通りです。 値 説明 LeftSide ドロップダウンボタンをコントロールの左側に配置します。 RightSide ドロップダウンボタンをコントロールの右側に配置します。(既定値) SpreadJSの表示 SpreadJSをドロップダウン表示したい場合、スプレッドシート(GC.Spread.Sheets.Workbook)をドロップダウンオブジェクトの子ノードとして追加し、ワークシートを設定します。 たとえば、以下のようなコードになります。 選択時の処理 選択時の処理は、SpreadJS側のイベントを使用して行うことになります。具体的には、ワークシート上でアイテムが選択されたことを検知(SelectionChangedイベント)し、テキストコントロールに選択された値を表示した上でcloseメソッドでドロップダウンを閉じるような処理を実装する必要があります。 たとえば、以下のようなコードになります。
import '@mescius/inputman/CSS/gc.inputman-js.css'; import '@mescius/spread-sheets/styles/gc.spread.sheets.css'; import './styles.css'; import './license'; import { InputMan } from '@mescius/inputman'; import { Spread } from '@mescius/spread-sheets'; import employees from './data'; InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern; // テキストコントロール const gcTextBox = new InputMan.GcTextBox(document.getElementById('gcTextBox'), { autoDropDown: true }); // ドロップダウンプラグイン const gcDropDown1 = gcTextBox.createDropDown(); gcDropDown1.setWidth(350); // Spread.Sheetsコントロール const hostElement1 = gcDropDown1.getElement(); hostElement1.style.height = '200px'; hostElement1.addEventListener('mousedown', () => { gcTextBox.setFocus(); }); const workbook1 = new Spread.Sheets.Workbook(hostElement1, { tabStripVisible: false, tabNavigationVisible: false, showHorizontalScrollbar: false }); const sheet1 = workbook1.getSheet(0); sheet1.selectionPolicy(Spread.Sheets.SelectionPolicy.single); sheet1.selectionUnit(Spread.Sheets.SelectionUnit.row); sheet1.setDataSource(employees); sheet1.bindColumns([ { name: 'id', displayName: '社員ID', size: 60 }, { name: 'department', displayName: '部署', size: 70 }, { name: 'name', displayName: '名前', size: 100 }, { name: 'tel', displayName: '電話番号', size: 110 }, ]); sheet1.options.isProtected = true; sheet1.options.rowHeaderVisible = false; sheet1.bind(Spread.Sheets.Events.SelectionChanged, (e, args) => { gcTextBox.setText(employees[args.newSelections[0].row].name); gcDropDown1.close(); }); // マスクコントロール const gcMask = new InputMan.GcMask(document.getElementById('gcMask'), { autoDropDown: true }); gcMask.setFormatPattern('\\D{3}-\\D{4}-\\D{4}'); // ドロップダウンプラグイン const gcDropDown2 = gcMask.createDropDown(); gcDropDown2.setWidth(350); // Spread.Sheetsコントロール const hostElement2 = gcDropDown2.getElement(); hostElement2.style.height = '200px'; hostElement2.addEventListener('mousedown', () => { gcMask.setFocus(); }); const workbook2 = new Spread.Sheets.Workbook(hostElement2, { tabStripVisible: false, tabNavigationVisible: false, showHorizontalScrollbar: false }); const sheet2 = workbook2.getSheet(0); sheet2.selectionPolicy(Spread.Sheets.SelectionPolicy.single); sheet2.selectionUnit(Spread.Sheets.SelectionUnit.row); sheet2.setDataSource(employees); sheet2.bindColumns([ { name: 'id', displayName: '社員ID', size: 60 }, { name: 'department', displayName: '部署', size: 70 }, { name: 'name', displayName: '名前', size: 100 }, { name: 'tel', displayName: '電話番号', size: 110 }, ]); sheet2.options.isProtected = true; sheet2.options.rowHeaderVisible = false; sheet2.bind(Spread.Sheets.Events.SelectionChanged, (e, args) => { gcMask.setValue(employees[args.newSelections[0].row].tel); setTimeout(() => gcDropDown2.close(), 100); });
<!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>ドロップダウンプラグイン - SpreadJSの表示</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/spread-sheets': 'npm:@mescius/spread-sheets/index.js', '@mescius/spread-sheets-resources-ja': 'npm:@mescius/spread-sheets-resources-ja/index.js', '@mescius/spread-sheets/styles': 'npm:@mescius/spread-sheets/styles', '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' }, } });