数値コントロール内にクリアボタンを表示する機能について解説します。
クリアボタンを表示する方法
コンストラクタのshowClearButtonオプションにtrueを設定します。
また、setShowClearButtonメソッドを使用することで、クリアボタンの表示の有無を切り替えることができます。
なお、値が0の時、allowDeleteToNullがtrueの場合はクリアボタンが表示されますが、allowDeleteToNullがfalseの場合はクリアボタンは表示されません。
import '@mescius/inputman/CSS/gc.inputman-js.css';
import { InputMan } from '@mescius/inputman';
import './styles.css';
InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern;
const gcNumber = new InputMan.GcNumber(document.getElementById('gcNumber'), {
value: '1234',
allowDeleteToNull: false,
showClearButton: true,
});
document.getElementById('showClearButton').addEventListener('click', (e) => {
gcNumber.setShowClearButton(e.target.checked);
});
<!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="gcNumber">
<table class="sample">
<tr>
<th>クリアボタンの表示</th>
<td>
<label><input type="checkbox" id="showClearButton" checked>表示する</label>
</td>
</tr>
</table>
</body>
</html>
body {
padding-bottom: 10rem;
}
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'
},
}
});