タグボックスコントロールの表示形式やドロップダウンリスト非表示設定、アイコンの表示位置、UI操作でサイズ変更する方法を示します。
表示形式
タグボックスコントロールはdisplayModeプロパティを使用して、選択したアイテムを一行表示または複数行表示に設定することができます。
displayModeプロパティに設定できる値は次のとおりで、既定値はTagBoxDisplayMode.Singlelineです。
TagBoxDisplayModeの値
説明
Singleline
選択アイテムを一行に表示します。
Multiline
選択アイテムを複数行に表示します。
ドロップダウンリスト非表示
showDropDownプロパティをfalseに設定することで、タグボックスコントロールのドロップダウンリストを非表示に設定することができます。
アイコンの表示位置
imageAlignmentプロパティを使用して、アイコンの表示位置をテキストの左または右に設定することができます。
imageAlignmentプロパティに設定できる値は次のとおりで、既定値はGcTagImageAlignment.LeftSideです。
GcTagImageAlignmentの値
説明
LeftSide
アイコンをテキストの左側に配置します。
RightSide
アイコンをテキストの右側に配置します。
サイズ変更
allowResizeプロパティをtrueに設定することで、タグボックスコントロールのコーナーをドラッグしてサイズ変更することができます。
import '@mescius/inputman/CSS/gc.inputman-js.css';
import { InputMan } from '@mescius/inputman';
import './styles.css';
import { products } from './data';
InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern;
const tagbox1 = new InputMan.GcTagBox(document.getElementById('tagbox1'), {
showImage: true,
tagImageMemberPath: 'Image',
tagTextMemberPath: 'Text',
items: products,
width: 400,
value: ['InputMan', 'ComponentOne'],
imageAlignment: GC.InputMan.GcTagImageAlignment.LeftSide
});
document.getElementById('displayMode').addEventListener('change', (e) => {
e.target.selectedIndex == 0
? (tagbox1.displayMode = 'singleline')
: (tagbox1.displayMode = 'multiline');
});
document.getElementById('showDropDown').addEventListener('click', (e) => {
tagbox1.showDropDown = !e.target.checked;
});
document.getElementById('allowResize').addEventListener('click', (e) => {
tagbox1.allowResize = e.target.checked;
});
document.getElementById('imageAlignment').addEventListener('change', (e) => {
tagbox1.imageAlignment = imageAlignment[e.target.selectedIndex];
});
const imageAlignment = [
InputMan.GcTagImageAlignment.LeftSide,
InputMan.GcTagImageAlignment.RightSide,
];
<!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 id="tagbox1"></div>
<table class="sample">
<tbody>
<tr>
<th>表示形式</th>
<td>
<select id="displayMode">
<option selected>一行表示</option>
<option>複数行表示</option>
</select>
</td>
</tr>
<tr>
<th>ドロップダウンリスト非表示</th>
<td>
<label><input type="checkbox" id="showDropDown">非表示</label>
</td>
</tr>
<tr>
<th>サイズ変更</th>
<td>
<label><input type="checkbox" id="allowResize">リサイズ可能</label>
</td>
</tr>
<tr>
<th>アイコンの表示位置</th>
<td>
<select id="imageAlignment">
<option selected>左</option>
<option>右</option>
</select>
</td>
</tr>
</tbody>
</table>
</body>
</html>
body {
min-height: 400px;
}
export const products = [
{
Image: '$IMDEMOROOT$/ja/samples/tagBox/display/img/AR.png',
Text: 'ActiveReports',
},
{
Image: '$IMDEMOROOT$/ja/samples/tagBox/display/img/C1.png',
Text: 'ComponentOne',
},
{
Image: '$IMDEMOROOT$/ja/samples/tagBox/display/img/DD.png',
Text: 'DioDocs',
},
{
Image: '$IMDEMOROOT$/ja/samples/tagBox/display/img/IM.png',
Text: 'InputMan',
},
{
Image: '$IMDEMOROOT$/ja/samples/tagBox/display/img/MR.png',
Text: 'MultiRow',
},
{
Image: '$IMDEMOROOT$/ja/samples/tagBox/display/img/SP.png',
Text: 'SPREAD',
},
];
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'
},
}
});