ショートカットコントロールでは、キーが押されたときにコントロールのアクション(操作)を実行することができます。
アクションはコントロールごとにいくつか定義されており、他にもカスタムアクションを実行することもできます。
定義済みのアクション
定義済みのアクションを実行するには、GcShortcut.addメソッドの引数のactionプロパティに、GcShortcutAction列挙型のメンバーを設定します。設定できる値は、キーを割り当てるコントロールによって異なります。
共通のアクション
値
説明
PreviousControl
前のコントロールにフォーカスを移動します。
NextControl
次のコントロールにフォーカスを移動します。
テキストコントロール(GcTextBox)のアクション
値
説明
Clear
値をクリアします。
DropDown
ドロップダウンを開きます。
マスクコントロール(GcMask)のアクション
値
説明
Clear
値をクリアします。
DropDown
ドロップダウンを開きます。
SpinUp
上方向のスピン操作を行います。
SpinDown
下方向のスピン操作を行います。
PreviousField
前のフィールドにフォーカスを移動します。
NextField
次のフィールドにフォーカスを移動します。
PreviousFieldControl
前のフィールドまたはコントロールにフォーカスを移動します。
NextFieldControl
次のフィールドまたはコントロールにフォーカスを移動します。
数値コントロール(GcNumber)のアクション
値
説明
Clear
値をクリアします。
DropDown
ドロップダウンを開きます。
SpinUp
上方向のスピン操作を行います。
SpinDown
下方向のスピン操作を行います。
ThreeZero
現在のカーソル位置に000を挿入します。
日付時刻コントロール(GcDateTime)のアクション
値
説明
Clear
値をクリアします。
DropDown
ドロップダウンを開きます。
SpinUp
上方向のスピン操作を行います。
SpinDown
下方向のスピン操作を行います。
PreviousField
前のフィールドにフォーカスを移動します。
NextField
次のフィールドにフォーカスを移動します。
PreviousFieldControl
前のフィールドまたはコントロールにフォーカスを移動します。
NextFieldControl
次のフィールドまたはコントロールにフォーカスを移動します。
Now
現在時刻を設定します。
カレンダーコントロール(GcCalendar)のアクション
値
説明
Clear
値をクリアします。
Now
現在の日時を設定します。
コンボコントロール(GcComboBox)のアクション
値
説明
Clear
値をクリアします。
DropDown
ドロップダウンを開きます。
SpinUp
上方向のスピン操作を行います。
SpinDown
下方向のスピン操作を行います。
カスタムアクション
カスタムアクションを実行するには、GcShortcut.addメソッドの引数のactionプロパティに実行したい関数を設定します。
import '@grapecity/inputman/CSS/gc.inputman-js.css';
import './styles.css';
import { InputMan } from '@grapecity/inputman';
InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern;
const gcTextBox = new InputMan.GcTextBox(document.getElementById('gcTextBox'), {
text: 'テキスト'
});
const gcMask = new InputMan.GcMask(document.getElementById('gcMask'), {
formatPattern: '(北海道|青森県|岩手県|宮城県|秋田県|山形県|福島県|茨城県|栃木県|群馬県|埼玉県|千葉県|東京都|神奈川県|山梨県|長野県|新潟県|富山県|石川県|福井県|岐阜県|静岡県|愛知県|三重県|滋賀県|京都府|大阪府|兵庫県|奈良県|和歌山県|鳥取県|島根県|岡山県|広島県|山口県|徳島県|香川県|愛媛県|高知県|福岡県|佐賀県|長崎県|熊本県|大分県|宮崎県|鹿児島県|沖縄県)',
showSpinButton: true
});
const gcNumber = new InputMan.GcNumber(document.getElementById('gcNumber'), {
value: 1,
showSpinButton: true,
showNumericPad: true
});
const gcDateTime = new InputMan.GcDateTime(document.getElementById('gcDateTime'), {
showSpinButton: true,
showDropDownButton: true,
dropDownConfig: {
dropDownType: InputMan.DateDropDownType.Calendar
}
});
const gcCalendar = new InputMan.GcCalendar(document.getElementById('gcCalendar'));
const gcComboBox = new InputMan.GcComboBox(document.getElementById('gcComboBox'), {
items: ['果汁100%オレンジ', 'コーヒーマイルド', 'ピリピリビール', 'ホワイトソルト', 'ブラックペッパー', 'ピュアシュガー'],
showSpinButton: true
});
const input = document.getElementById('text');
var gcShortcut = new InputMan.GcShortcut();
// GcTextBoxにショートカットキーを追加します。
gcShortcut.add({ key: InputMan.GcShortcutKey.P, target: gcTextBox, action: InputMan.GcShortcutAction.PreviousControl });
gcShortcut.add({ key: InputMan.GcShortcutKey.N, target: gcTextBox, action: InputMan.GcShortcutAction.NextControl });
gcShortcut.add({ key: InputMan.GcShortcutKey.C, target: gcTextBox, action: InputMan.GcShortcutAction.Clear });
gcShortcut.add({ key: InputMan.GcShortcutKey.V, target: gcTextBox, action: showValue });
// GcMaskにショートカットキーを追加します。
gcShortcut.add({ key: InputMan.GcShortcutKey.P, target: gcMask, action: InputMan.GcShortcutAction.PreviousFieldControl });
gcShortcut.add({ key: InputMan.GcShortcutKey.N, target: gcMask, action: InputMan.GcShortcutAction.NextFieldControl });
gcShortcut.add({ key: InputMan.GcShortcutKey.C, target: gcMask, action: InputMan.GcShortcutAction.Clear });
gcShortcut.add({ key: InputMan.GcShortcutKey.U, target: gcMask, action: InputMan.GcShortcutAction.SpinUp });
gcShortcut.add({ key: InputMan.GcShortcutKey.D, target: gcMask, action: InputMan.GcShortcutAction.SpinDown });
gcShortcut.add({ key: InputMan.GcShortcutKey.V, target: gcMask, action: showValue });
// GcNumberにショートカットキーを追加します。
gcShortcut.add({ key: InputMan.GcShortcutKey.P, target: gcNumber, action: InputMan.GcShortcutAction.PreviousControl });
gcShortcut.add({ key: InputMan.GcShortcutKey.N, target: gcNumber, action: InputMan.GcShortcutAction.NextControl });
gcShortcut.add({ key: InputMan.GcShortcutKey.C, target: gcNumber, action: InputMan.GcShortcutAction.Clear });
gcShortcut.add({ key: InputMan.GcShortcutKey.R, target: gcNumber, action: InputMan.GcShortcutAction.DropDown });
gcShortcut.add({ key: InputMan.GcShortcutKey.U, target: gcNumber, action: InputMan.GcShortcutAction.SpinUp });
gcShortcut.add({ key: InputMan.GcShortcutKey.D, target: gcNumber, action: InputMan.GcShortcutAction.SpinDown });
gcShortcut.add({ key: InputMan.GcShortcutKey.Z, target: gcNumber, action: InputMan.GcShortcutAction.ThreeZero });
gcShortcut.add({ key: InputMan.GcShortcutKey.V, target: gcNumber, action: showValue });
// GcDateTimeにショートカットキーを追加します。
gcShortcut.add({ key: InputMan.GcShortcutKey.P, target: gcDateTime, action: InputMan.GcShortcutAction.PreviousFieldControl });
gcShortcut.add({ key: InputMan.GcShortcutKey.N, target: gcDateTime, action: InputMan.GcShortcutAction.NextFieldControl });
gcShortcut.add({ key: InputMan.GcShortcutKey.C, target: gcDateTime, action: InputMan.GcShortcutAction.Clear });
gcShortcut.add({ key: InputMan.GcShortcutKey.R, target: gcDateTime, action: InputMan.GcShortcutAction.DropDown });
gcShortcut.add({ key: InputMan.GcShortcutKey.U, target: gcDateTime, action: InputMan.GcShortcutAction.SpinUp });
gcShortcut.add({ key: InputMan.GcShortcutKey.D, target: gcDateTime, action: InputMan.GcShortcutAction.SpinDown });
gcShortcut.add({ key: InputMan.GcShortcutKey.W, target: gcDateTime, action: InputMan.GcShortcutAction.Now });
gcShortcut.add({ key: InputMan.GcShortcutKey.V, target: gcDateTime, action: showValue });
// GcCalendarにショートカットキーを追加します。
gcShortcut.add({ key: InputMan.GcShortcutKey.P, target: gcCalendar, action: InputMan.GcShortcutAction.PreviousControl });
gcShortcut.add({ key: InputMan.GcShortcutKey.N, target: gcCalendar, action: InputMan.GcShortcutAction.NextControl });
gcShortcut.add({ key: InputMan.GcShortcutKey.C, target: gcCalendar, action: InputMan.GcShortcutAction.Clear });
gcShortcut.add({ key: InputMan.GcShortcutKey.W, target: gcCalendar, action: InputMan.GcShortcutAction.Now });
gcShortcut.add({ key: InputMan.GcShortcutKey.V, target: gcCalendar, action: showValue });
// GcComboBoxにショートカットキーを追加します。
gcShortcut.add({ key: InputMan.GcShortcutKey.P, target: gcComboBox, action: InputMan.GcShortcutAction.PreviousControl });
gcShortcut.add({ key: InputMan.GcShortcutKey.N, target: gcComboBox, action: InputMan.GcShortcutAction.NextControl });
gcShortcut.add({ key: InputMan.GcShortcutKey.C, target: gcComboBox, action: InputMan.GcShortcutAction.Clear });
gcShortcut.add({ key: InputMan.GcShortcutKey.R, target: gcComboBox, action: InputMan.GcShortcutAction.DropDown });
gcShortcut.add({ key: InputMan.GcShortcutKey.U, target: gcComboBox, action: InputMan.GcShortcutAction.SpinUp });
gcShortcut.add({ key: InputMan.GcShortcutKey.D, target: gcComboBox, action: InputMan.GcShortcutAction.SpinDown });
gcShortcut.add({ key: InputMan.GcShortcutKey.V, target: gcComboBox, action: showValue });
// input要素にショートカットキーを追加します。
gcShortcut.add({ key: InputMan.GcShortcutKey.P, target: input, action: InputMan.GcShortcutAction.PreviousControl });
gcShortcut.add({ key: InputMan.GcShortcutKey.N, target: input, action: InputMan.GcShortcutAction.NextControl });
gcShortcut.add({ key: InputMan.GcShortcutKey.V, target: input, action: showValue });
// カスタムアクション
function showValue(args) {
alert(args.target.value || args.target.selectedValue || args.target.selectedDate);
}
<!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>
System.import('./src/app');
</script>
</head>
<body>
<div class="flexbox">
<div>
テキストコントロール<br>
<input id="gcTextBox">
</div>
<div>
マスクコントロール<br>
<input id="gcMask">
</div>
<div>
数値コントロール<br>
<input id="gcNumber">
</div>
<div>
日付時刻コントロール<br>
<input id="gcDateTime">
</div>
<div>
カレンダーコントロール<br>
<div id="gcCalendar"></div>
</div>
<div>
コンボコントロール<br>
<select id="gcComboBox"></select>
</div>
<div>
標準の入力要素<br>
<input id="text" value="テキスト">
</div>
</div>
<table class="sample">
<tr>
<th>キー</th>
<th>アクション</th>
<th>対象のコントロール</th>
</tr>
<tr>
<td>V</td>
<td>現在の値を表示します。これはカスタムアクションです。</td>
<td>全コントロール</td>
</tr>
<tr>
<td>P</td>
<td>前のフィールドまたはコントロールにフォーカスを移動します。</td>
<td>全コントロール</td>
</tr>
<tr>
<td>N</td>
<td>次のフィールドまたはコントロールにフォーカスを移動します。</td>
<td>全コントロール</td>
</tr>
<tr>
<td>C</td>
<td>値をクリアします。</td>
<td>標準入力要素以外の全コントロール</td>
</tr>
<tr>
<td>R</td>
<td>ドロップダウンを開きます。</td>
<td>数値、日付時刻、コンボ</td>
</tr>
<tr>
<td>U</td>
<td>上方向のスピン操作を行います。</td>
<td>マスク、数値、日付時刻、コンボ</td>
</tr>
<tr>
<td>D</td>
<td>下方向のスピン操作を行います。</td>
<td>マスク、数値、日付時刻、コンボ</td>
</tr>
<tr>
<td>Z</td>
<td>現在のカーソル位置に000を挿入します。</td>
<td>数値</td>
</tr>
<tr>
<td>W</td>
<td>現在の日時を設定します。</td>
<td>日付時刻、カレンダー</td>
</tr>
</table>
</body>
</html>
body {
min-height: 250px;
}
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: {
'@grapecity/inputman': 'npm:@grapecity/inputman/index.js',
'@grapecity/inputman/CSS': 'npm:@grapecity/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'
},
}
});