既定の検証規則に外部検証結果の指定について解説します。
概要
何らかのチェック処理を行って結果で判定して検証通知を表示したい場合、外部検証結果の指定を使用できます。
使用方法
ruleプロパティにValidateType.Externalを指定し、validateメソッドでBoolean型のパラメータで検証成功または失敗を設定できます。
たとえば、ラジオボタンのtrue/falseを切り替えることで、テキストコントロールに検証結果を適用する使用例は以下の通りです・
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'));
const validator1 = new InputMan.GcValidator({
items: [
{
control: gcTextBox1,
ruleSet: [
{
rule: InputMan.ValidateType.External,
failMessage: `外部検証が失敗しました。`,
},
],
validateWhen: InputMan.ValidateWhen.Manual,
},
],
defaultNotify: {
fail: {
tip: {
style: 'flatpanel',
direction: 'bottom',
position: 'start',
},
},
success: {
tip: {
style: 'flatpanel',
direction: 'bottom',
position: 'start',
},
},
},
});
validator1.validate(gcTextBox1, true);
document.querySelectorAll('input[name="validatorGroup"]').forEach((radio) => {
radio.addEventListener('change', function () {
validator1.validate(gcTextBox1, this.value === 'true');
});
});
<!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>
<p>
下記のラジオボタンを切り替えることで、コントロールに検証結果を適用できます。
</p>
<input type="radio" id="optionTrue" name="validatorGroup" value="true" checked />
<label for="optionTrue">成功</label>
<input type="radio" id="optionFalse" name="validatorGroup" value="false" />
<label for="optionFalse">失敗</label>
</div>
<br />
<div>
<input id="gcTextBox1" />
</div>
</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'
},
}
});