タグボックス(GcTagBox)コントロールは、設定したドロップダウンリストから一度に複数の項目を選択するほか、テキストエリアへ直接入力した値をラベルとして表示する機能を提供します。
また、入力された値に合致する項目を自動的に表示するオートフィルタ機能や、UI操作で項目の並び替えや削除する機能なども提供しています。
import '@mescius/inputman/CSS/gc.inputman-js.css';
import './styles.css';
import { InputMan } from '@mescius/inputman';
import { products, gcProducts } from './data'
InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern;
new InputMan.GcTagBox(document.getElementById('tagbox1'), {
items: products,
width: 400,
height: 80,
});
new InputMan.GcTagBox(document.getElementById('tagbox2'), {
showImage: true,
width: 400,
displayMode: GC.InputMan.TagBoxDisplayMode.Multiline,
tagImageMemberPath: 'Image',
tagTextMemberPath: 'Text',
items: [
{
Image: '$IMDEMOROOT$/ja/samples/tagBox/overview/img/AR.png',
Text: 'ActiveReports',
},
{
Image: '$IMDEMOROOT$/ja/samples/tagBox/overview/img/C1.png',
Text: 'ComponentOne',
},
{
Image: '$IMDEMOROOT$/ja/samples/tagBox/overview/img/DD.png',
Text: 'DioDocs',
},
{
Image: '$IMDEMOROOT$/ja/samples/tagBox/overview/img/IM.png',
Text: 'InputMan',
},
{
Image: '$IMDEMOROOT$/ja/samples/tagBox/overview/img/MR.png',
Text: 'MultiRow',
},
{
Image: '$IMDEMOROOT$/ja/samples/tagBox/overview/img/SP.png',
Text: 'SPREAD',
},
],
});
new InputMan.GcTagBox(document.getElementById('tagbox3'), {
items: gcProducts,
width: 500,
height: 200,
showImage: true,
tagImageMemberPath: 'logo',
tagTextMemberPath: 'name',
dropDownWidth: 500,
dropDownHeight: 200,
dropDownItemHeight: 50,
autoDropDown: true,
displayMode: GC.InputMan.TagBoxDisplayMode.Multiline,
tagTemplate: `<div class="template-item">
<div class="image">
<img src="{!logo}">
</div>
<div class="names">
<div class="name">{!name}</div>
<div class="category">{!category}</div>
</div>
</div>`,
dropDownItemTemplate: `<div class="template-item">
<div class="image">
<img src="{!logo}">
</div>
<div class="names">
<div class="name">{!name}</div>
<div class="category">{!category}</div>
</div>
<div class="description">{!description}</div>
</div>`,
});
<!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 class="flexbox">
<div>
単純なタグボックス<br>
<div id="tagbox1"></div>
</div>
<br />
<div>
アイコン表示<br>
<div id="tagbox2"></div>
</div>
<br />
<div>
テンプレート<br>
<div id="tagbox3"></div>
</div>
</div>
</body>
</html>
.viewport {
line-height: 1.3;
}
body {
min-height: 430px;
}
.template-item {
height: 50px;
display: flex;
justify-content: center;
align-items: center;
}
.template-item>* {
margin: 0 5px;
}
.image {
width: 40px;
height: 40px;
}
.image img {
width: 40px;
}
.names {
width: 150px;
}
.name {
font-size: 16px;
font-weight: bold;
color: #2676c0;
}
.category {
font-size: 12px;
color: green;
}
.description {
width: 210px;
flex-grow: 1;
white-space: normal;
}
export const products = ['果汁100%オレンジ', '果汁100%グレープ', '果汁100%レモン', '果汁100%ピーチ', 'コーヒーマイルド', 'コーヒービター'];
export const gcProducts = [
{ logo: '$IMDEMOROOT$/ja/samples/tagBox/overview/img/AR.png', name: 'ActiveReports', category: '帳票・レポート', description: '日本仕様の帳票開発に必要な機能を搭載したコンポーネント' },
{ logo: '$IMDEMOROOT$/ja/samples/tagBox/overview/img/SP.png', name: 'SPREAD', category: '表計算・グリッド', description: 'Excel風のビューと表計算機能を実現するUIコンポーネント' },
{ logo: '$IMDEMOROOT$/ja/samples/tagBox/overview/img/C1.png', name: 'ComponentOne', category: 'コンポーネントセット', description: 'Visual Studioで利用する.NET Framework用コンポーネント' },
{ logo: '$IMDEMOROOT$/ja/samples/tagBox/overview/img/IM.png', name: 'InputMan', category: '入力支援', description: '快適な入力を実現する日本仕様入力コンポーネントセット' },
{ logo: '$IMDEMOROOT$/ja/samples/tagBox/overview/img/MR.png', name: 'MultiRow', category: '多段明細', description: '1レコード複数行&日付表示に最適なグリッドコンポーネント' },
{ logo: '$IMDEMOROOT$/ja/samples/tagBox/overview/img/DD.png', name: 'DioDocs', category: 'ドキュメントAPI', description: 'ドキュメントを生成、更新するAPIライブラリ' },
];
[gcim-control-appearance="modern"] .viewport {
line-height: 1.3;
}
[gcim-control-appearance="modern"] .template-item {
height: 50px;
display: flex;
justify-content: center;
align-items: center;
}
[gcim-control-appearance="modern"] .template-item>* {
margin: 0 5px;
}
[gcim-control-appearance="modern"] .image {
width: 40px;
height: 40px;
}
[gcim-control-appearance="modern"] .image img {
width: 40px;
}
[gcim-control-appearance="modern"] .names {
width: 150px;
}
[gcim-control-appearance="modern"] .name {
font-size: 16px;
font-weight: bold;
color: #2676c0;
}
[gcim-control-appearance="modern"] .category {
font-size: 12px;
color: green;
}
[gcim-control-appearance="modern"] .tag[selected="true"] .name {
color: #ffffff;
}
[gcim-control-appearance="modern"] .tag[selected="true"] .category {
color: #6cd16c;
}
[gcim-control-appearance="modern"] .description {
width: 210px;
flex-grow: 1;
white-space: normal;
}
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'
},
}
});