コンボコントロールではフォーカス制御に関する様々な機能を搭載しています。
矢印キーによるフォーカス移動
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';
import products from './data';
InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern;
// コントロールを初期化
const gcComboBox1 = new InputMan.GcComboBox(document.getElementById('gcComboBox1'), {
items: products
});
const gcComboBox2 = new InputMan.GcComboBox(document.getElementById('gcComboBox2'), {
items: products
});
const gcComboBox3 = new InputMan.GcComboBox(document.getElementById('gcComboBox3'), {
items: products
});
// 矢印キーによるフォーカス移動
var ExitOnLeftRightKeys = [
InputMan.ExitOnLeftRightKey.None,
InputMan.ExitOnLeftRightKey.Both,
InputMan.ExitOnLeftRightKey.Left,
InputMan.ExitOnLeftRightKey.Right
];
document.getElementById('setExitOnLeftRightKey').addEventListener('change', (e) => {
gcComboBox1.setExitOnLeftRightKey(ExitOnLeftRightKeys[e.target.selectedIndex]);
gcComboBox2.setExitOnLeftRightKey(ExitOnLeftRightKeys[e.target.selectedIndex]);
gcComboBox3.setExitOnLeftRightKey(ExitOnLeftRightKeys[e.target.selectedIndex]);
});
// Enterキーによるフォーカス移動
var ExitKeys = [
InputMan.ExitKey.None,
InputMan.ExitKey.Both,
InputMan.ExitKey.Enter,
InputMan.ExitKey.ShiftEnter
];
document.getElementById('setExitOnEnterKey').addEventListener('change', (e) => {
gcComboBox1.setExitOnEnterKey(ExitKeys[e.target.selectedIndex]);
gcComboBox2.setExitOnEnterKey(ExitKeys[e.target.selectedIndex]);
gcComboBox3.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>
<select id="gcComboBox1" tabindex="1"></select><br>
<select id="gcComboBox2" tabindex="2"></select><br>
<select id="gcComboBox3" tabindex="3"></select><br>
<table class="sample">
<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>
body {
min-height: 260px;
}
module.exports = [
'果汁100%オレンジ',
'果汁100%グレープ',
'果汁100%レモン',
'果汁100%ピーチ',
'コーヒーマイルド',
'コーヒービター'
];
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'
},
}
});