フォーカス移動

このサンプルではテキストコントロールのフォーカス制御を設定でき、矢印キーやEnterキーでフォーカスを移動する方法を示しています。また、自動フォーカスをONに設定すると、入力完了時に自動的に次のコントロールへフォーカスを移動します。

テキストコントロールではフォーカス制御に関する様々な機能を搭載しています。 自動フォーカス移動 setExitOnLastCharメソッドでtrueを設定すると、入力された文字列がsetMaxLengthメソッドで設定した最大文字数に達したときに、自動的に次のコントロールへフォーカスを移動できます。 矢印キーによるフォーカス移動 setExitOnLeftRightKeyメソッドを使用すると、キャレットがコントロール内のテキストの最初または最後の文字上にある状態で、[→]、[←]、または[Ctrl]+[→]、[Ctrl]+[←]の各キーを押したときに、フォーカスを前後のコントロールに移動することができます。setExitOnLeftRightKeyメソッドに設定できる値は次のとおりで、既定値はExitOnLeftRightKey.Noneです。 ExitOnLeftRightKeyの値 説明 None 矢印キーを使ってフォーカスを移動することはできません。 Left キャレットが入力中のテキストの左端にあるときに[←]キーまたは[Ctrl]+[←]キーを押すと、フォーカスは1つ前のコントロールに移動します。 Right キャレットが入力中のテキストの右端にあるときに[→]キーまたは[Ctrl]+[→]キーを押すと、フォーカスは次のコントロールに移動します。 Both 「Left」と「Right」の両方の機能を使用できます。 Enterキーによるフォーカス移動 setExitOnEnterKeyメソッドを使用すると、[Shift]+[Enter]、[Enter]の各キーを押したときに、フォーカスを前後のコントロールに移動することができます。setExitOnEnterKeyメソッドに設定できる値は次のとおりで、既定値はExitKey.Noneです。 ExitKeyの値 説明 None Enterキーを使ってフォーカスを移動することはできません。 ShiftEnter [Shift]+[Enter]キーを押すと、フォーカスは1つ前のコントロールに移動します。 Enter [Enter]キーを押すと、フォーカスは次のコントロールに移動します。 Both 「ShiftEnter」と「Enter」の両方の機能を使用できます。
import '@mescius/inputman/CSS/gc.inputman-js.css'; import { InputMan } from '@mescius/inputman'; InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern; // コントロールを初期化 const gcTextBox1 = new InputMan.GcTextBox(document.getElementById('gcTextBox1'), { maxLength: 3 }); const gcTextBox2 = new InputMan.GcTextBox(document.getElementById('gcTextBox2'), { maxLength: 3 }); const gcTextBox3 = new InputMan.GcTextBox(document.getElementById('gcTextBox3'), { maxLength: 3 }); // 自動フォーカス移動 document.getElementById('setExitOnLastChar').addEventListener('change', (e) => { const isExitOnLastChar = e.target.checked; gcTextBox1.setExitOnLastChar(isExitOnLastChar); gcTextBox2.setExitOnLastChar(isExitOnLastChar); gcTextBox3.setExitOnLastChar(isExitOnLastChar); }); // 矢印キーによるフォーカス移動 const ExitOnLeftRightKeys = [ InputMan.ExitOnLeftRightKey.None, InputMan.ExitOnLeftRightKey.Both, InputMan.ExitOnLeftRightKey.Left, InputMan.ExitOnLeftRightKey.Right ]; document.getElementById('setExitOnLeftRightKey').addEventListener('change', (e) => { gcTextBox1.setExitOnLeftRightKey(ExitOnLeftRightKeys[e.target.selectedIndex]); gcTextBox2.setExitOnLeftRightKey(ExitOnLeftRightKeys[e.target.selectedIndex]); gcTextBox3.setExitOnLeftRightKey(ExitOnLeftRightKeys[e.target.selectedIndex]); }); // Enterキーによるフォーカス移動 const ExitKeys = [ InputMan.ExitKey.None, InputMan.ExitKey.Both, InputMan.ExitKey.Enter, InputMan.ExitKey.ShiftEnter ]; document.getElementById('setExitOnEnterKey').addEventListener('change', (e) => { gcTextBox1.setExitOnEnterKey(ExitKeys[e.target.selectedIndex]); gcTextBox2.setExitOnEnterKey(ExitKeys[e.target.selectedIndex]); gcTextBox3.setExitOnEnterKey(ExitKeys[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> <input id="gcTextBox1" tabindex="1"><br> <input id="gcTextBox2" tabindex="2"><br> <input id="gcTextBox3" tabindex="3"><br> ※最大3文字まで入力可能 <table class="sample"> <tr> <th>自動フォーカス移動</th> <td><label><input type="checkbox" id="setExitOnLastChar">入力完了時に自動的に次のコントロールに移動する</label> </td> </tr> <tr> <th>矢印キーによるフォーカス移動</th> <td> <select id="setExitOnLeftRightKey"> <option>なし</option> <option>両方</option> <option>左</option> <option>右</option> </select> </td> </tr> <tr> <th>Enterキーによるフォーカス移動</th> <td> <select id="setExitOnEnterKey"> <option>なし</option> <option>両方</option> <option>Enter</option> <option>Shift+Enter</option> </select> </td> </tr> </table> </body> </html>
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' }, } });