ドロップダウン機能

このサンプルでは数値コントロールに簡易キーパッドをドロップダウンに表示し、数値キーをクリックまたはタップで入力することを確認できます。

数値コントロールには、数値入力に特化した簡易キーパッドをドロップダウン表示することが可能です。 概要 数値コントロールのaddDropDownNumericPadメソッドを実行すると、ドロップダウンボタンの押下により、数値入力に特化した簡易キーパッドが表示されます。 数値パッドは数字キーをクリックまたはタップすることで、コントロールに直接数字を入力できます。入力完了後はドロップダウンボタンの再押下か、ドロップダウン部分以外の箇所をクリックすることで数値パッドは閉じられます。 数値パッドは、以下のキーから構成されます。 0~9までの数字キー 左右移動キー(「<」「>」) Baskspaceキー(「」) ピリオドキー(「.」) 正負切り替えキー(「+/-」) ドロップダウン操作 コントロールがフォーカスを取得したときに自動的にドロップダウンを開くには、引数にtrueを指定してsetAutoDropDownメソッドを実行します。 任意のタイミングで手動でドロップダウンを開くには、ドロップダウンウィンドウ(getDropDownWindowメソッドで取得します)のopenメソッドを実行します。また、ドロップダウンを開くにはcloseメソッドを実行します。 ドロップダウンボタン ドロップダウンボタンの表示有無は、setDropDownButtonVisibleメソッドで設定することが可能です。引数をtrueに設定すると、ドロップダウンボタンが表示されます。(既定値はtrueです。) ドロップダウンの方向 ドロップダウンは通常コントロールの下に表示されますが、コントロールの下にドロップダウンを表示できる十分なスペースがない場合は、ドロップダウンがコントロールの上に表示されます。ドロップダウンの表示スペースを判定するとき、既定ではWebページ本体(body要素)をコンテナとして扱いますが、setContainerメソッドで任意の要素をコンテナとして指定することも可能です。 ドロップダウンのアニメーション効果 ドロップダウンリストを表示/非表示を切り替えるときに、アニメーション効果を設定することができます。コントロール全体に一括適用するか、各コントロールに異なるアニメーション効果を設定できます。animationTypeプロパティに設定できる値は以下のとおりで、既定値はDropDownAnimationType.Noneです。 値 アニメーション効果 None 効果なし SlideDown スライドダウン SlideUp スライドアップ Popup ポップアップ要素 Expand 拡大表示 次のサンプルコードは、すべてのコントロールのドロップダウンにアニメーション効果を適用します。 次のサンプルコードは、指定コントロールのドロップダウンにアニメーション効果を適用します。
import '@mescius/inputman/CSS/gc.inputman-js.css'; import { InputMan } from '@mescius/inputman'; import './styles.css'; InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern; const gcNumber1 = new InputMan.GcNumber(document.getElementById('gcNumber1'), { displayFormatDigit: '##,##0', displayPositivePrefix: '税込 ', displayNegativePrefix: '税込 ▲', displayPositiveSuffix: '円', displayNegativeSuffix: '円', formatDigit: '#####', positivePrefix: '$', negativePrefix: '-$', positiveSuffix: '(税込)', negativeSuffix: '(税込)', showNumericPad: true, container: document.getElementById('container1') }); const gcNumber2 = new InputMan.GcNumber(document.getElementById('gcNumber2'), { displayFormatDigit: '##,##0', displayPositivePrefix: '税込 ', displayNegativePrefix: '税込 ▲', displayPositiveSuffix: '円', displayNegativeSuffix: '円', formatDigit: '#####', positivePrefix: '$', negativePrefix: '-$', positiveSuffix: '(税込)', negativeSuffix: '(税込)', showNumericPad: true, container: document.getElementById('container2') }); document.getElementById('openOnFocus').addEventListener('change', (e) => { gcNumber1.setAutoDropDown(e.target.checked); gcNumber2.setAutoDropDown(e.target.checked); }); document.getElementById('open').addEventListener('click', (e) => { gcNumber1.getDropDownWindow().open(); gcNumber2.getDropDownWindow().open(); }); document.getElementById('close').addEventListener('click', (e) => { gcNumber1.getDropDownWindow().close(); gcNumber2.getDropDownWindow().close(); }); document.getElementById('setDropDownButtonVisible').addEventListener('change', (e) => { gcNumber1.setDropDownButtonVisible(e.target.checked); gcNumber2.setDropDownButtonVisible(e.target.checked); }); const animationType = [ InputMan.DropDownAnimationType.None, InputMan.DropDownAnimationType.SlideDown, InputMan.DropDownAnimationType.SlideUp, InputMan.DropDownAnimationType.Popup, InputMan.DropDownAnimationType.Expand, ]; document.getElementById('setAnimationType').addEventListener('change', (e) => { gcNumber1.getDropDownWindow().animationType = animationType[e.target.selectedIndex]; gcNumber2.getDropDownWindow().animationType = animationType[e.target.selectedIndex]; });
<!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>数値コントロール - ドロップダウン機能</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 id="container1"> <p>ドロップダウンが下に表示されます。</p> <input id="gcNumber1"> </div> <div id="container2"> <p>ドロップダウンが上に表示されます。</p> <input id="gcNumber2"> </div> </div> <table class="sample"> <tr> <th>フォーカス時のドロップダウン操作</th> <td> <label><input type="checkbox" id="openOnFocus">フォーカス時にドロップダウンを開く</label> </td> </tr> <tr> <th>コードによるドロップダウン操作</th> <td> <button id="open">ドロップダウンを開く</button> <button id="close">ドロップダウンを閉じる</button> </td> </tr> <tr> <th>ドロップダウンボタンの表示</th> <td> <label><input type="checkbox" id="setDropDownButtonVisible" checked>ドロップダウンボタンを表示する</label> </td> </tr> <tr> <th>アニメーション効果</th> <td> <select id="setAnimationType"> <option selected>なし</option> <option>スライドダウン</option> <option>スライドアップ</option> <option>ポップアップ</option> <option>拡大</option> </select> </td> </tr> </table> </body> </html>
.flexbox { display: flex; flex-wrap: wrap; } .flexbox > div { height: 300px; width: 300px; background-color: #f8f8f8; } #container2 > p { margin-top: 220px; }
[gcim-control-appearance="modern"] .flexbox { display: flex; flex-wrap: wrap; } [gcim-control-appearance="modern"] .flexbox > div { height: 300px; width: 300px; background-color: #f8f8f8; } [gcim-control-appearance="modern"] #container2 > p { margin-top: 220px; }
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', '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' }, } });