イベント

InputManJSの検証コントロールでは、各種イベントがあります。以下のサンプルではアクションに応じて発生したイベントを確認できます。

InputManJSでは、コントロールへのアクションに応じてイベントが発生します。検証コントロールで発生するイベントは、以下の通りです。 イベント名 説明 validationFailed 検証に失敗したときに発生します。
import '@mescius/inputman/CSS/gc.inputman-js.css'; import { InputMan } from '@mescius/inputman'; InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern; const gcTextBox = new InputMan.GcTextBox(document.getElementById('gcTextBox')); const gcValidator = new InputMan.GcValidator({ items: [ { control: gcTextBox, ruleSet: [ { rule: InputMan.ValidateType.Required } ] } ], defaultNotify: { tip: { direction: InputMan.TipDirection.Right } } }); // イベントハンドラ gcValidator.addEventListener(InputMan.GcValidatorEvent.ValidationFailed, (sender, eArgs) => { log('ValidationFailed'); }); // テキストボックスにログを出力 const log = (message) => { const textarea = document.getElementById('log'); textarea.value += message + '\n'; textarea.scrollTop = textarea.scrollHeight; } gcValidator.validate();
<!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="gcTextBox"><br><br> イベント<br> <textarea id="log" rows="10" cols="30"></textarea> </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' }, } });