タグボックスコントロールでは、入力または選択されているタグのテキストを取得することはできます。複数のタグが表示されている場合は、区切り文字を設定することも可能です。
区切り文字を変更する場合には、separatorプロパティに任意の区切り文字を設定します。
import '@mescius/inputman/CSS/gc.inputman-js.css';
import './styles.css';
import { InputMan } from '@mescius/inputman';
import { products } from './data';
InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern;
var tagbox1 = new InputMan.GcTagBox(document.getElementById('tagbox1'), {
items: products,
width: 400,
displayMode: GC.InputMan.TagBoxDisplayMode.Multiline,
separator: ','
});
tagbox1.addEventListener('valuechanged', () => {
let textarea = document.getElementById('textarea');
textarea.value = tagbox1.text;
});
const separatorText = new InputMan.GcTextBox(document.getElementById('separatorText'), {
text: ',',
maxLength: 1
});
separatorText.onTextChanged(() => {
tagbox1.separator = separatorText.getText();
})
<!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>タグボックス:</div>
<div id="tagbox1"></div>
<br />
<div>
選択項目のテキスト:<br />
<textarea id="textarea" rows="6" cols="40"></textarea>
</div>
<table class="sample">
<tr>
<th>区切りに使用する文字</th>
<td><input type="text" value="," id="separatorText"></td>
</tr>
</table>
</body>
</html>
body {
min-height: 220px;
}
export const products = ['果汁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'
},
}
});