タグボックスコントロールでは、データ項目が階層データの場合、ドロップダウンリストに表示する内容をツリーとして表示できます。
データ構造
タグボックスコントロールのドロップダウンリストをツリーとして表示するには、各データ項目が親子関係を持つように設定します。
以下のように、「children」プロパティを持つ「products」オブジェクトのデータをツリーとしてドロップダウンリストに表示します。「children」プロパティには「products」オブジェクトの配列が含まれ、さらに多くの「children」プロパティで子階層のデータを設定することができます。
ツリービューの設定
dropDownTypeプロパティを利用することで、タグボックスコントロールのドロップダウンリストの表示形式を設定できます。設定できる値(TagBoxDropDownType列挙体)は、以下の通りです。既定値はListです。
TagBoxDropDownTypeの値
説明
List
ドロップダウンリストをリストとして表示する
Tree
ドロップダウンリストをツリーとして表示する
ツリービューを有効するには、dropDownTypeプロパティをTagBoxDropDownType.Treeに設定します。
また、dropDownTreeConfigプロパティに、childrenMemberPathプロパティで子階層のコレクションを指定できます。既定値ははchildrenです。
設定例は以下の通りです。
子階層の展開/折りたたみ表示
expandedMemberPathプロパティでドロップダウンリストを開く時に子階層を展開するかどうかを設定できます。既定値ははexpandedです。expandedをtrueまたはfalseに設定することで、子階層の展開/折りたたみの表示を切り替えます。
ソート & フィルター & オートコンプリート
ツリービューを設定したタグボックスコントロールはソート、フィルターとオートコンプリート機能をサポートします。フィルターを設定する場合、子ノードが入力内容にヒットすると、折りたたまれたノードが自動的に展開されます。
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: 240,
dropDownType: InputMan.TagBoxDropDownType.Tree,
tagTextMemberPath: 'product',
dropDownDisplayMemberPath: 'product'
});
new InputMan.GcTagBox(document.getElementById('tagbox2'), {
items: gcProducts,
height: 50,
width: 240,
showImage: true,
dropDownWidth: 540,
dropDownHeight: 200,
dropDownItemHeight: 50,
tagImageMemberPath: 'logo',
tagTextMemberPath: 'displayText',
dropDownType: InputMan.TagBoxDropDownType.Tree,
dropDownTreeConfig: {
itemTemplate: (item) => {
const container = document.createElement("div");
if (item.type === 'parent') {
container.classList.add("template-parent-item");
container.innerHTML = `<span>${item.product}</span>`
} else {
container.classList.add("template-item");
container.innerHTML = `
<div class="image"><img src="${item.logo}"></div>
<div class="names"><div class="name">${item.name}</div><div class="category">${item.category}</div></div>
<div class="description">${item.description}</div>`;
}
return container;
}
},
});
<!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>
<div>
テンプレート<br>
<div id="tagbox2"></div>
</div>
</div>
</body>
</html>
.viewport {
line-height: 1.3;
}
body{
min-height: 300px;
}
.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;
white-space: normal;
}
.template-parent-item {
display: flex;
align-items: center;
height: 100%;
}
export const products = [{
product: 'ジュース',
children: [{
product: 'ストレートジュース',
children: ['果汁100%オレンジ', '果汁100%グレープ', '果汁100%レモン', '果汁100%ピーチ'],
expanded: true,
}, {
product: 'ブレンドジュース',
children: ['オレンジブレンド', 'グレープブレンド', 'レモンブレンド', 'ピーチブレンド']
}
],
expanded: true,
},
{
product: 'コーヒー',
children: ['コーヒーマイルド', 'コーヒービター'],
}];
export const gcProducts = [
{
product: '帳票・ドキュメント関連製品',
displayText: '帳票・ドキュメント関連製品',
children: [
{
logo: '$IMDEMOROOT$/ja/samples/tagBox/treeview/basic/img/AR.png',
name: 'ActiveReports',
category: '帳票・レポート',
description: '日本仕様の帳票開発に必要な機能を搭載したコンポーネント',
displayText: 'ActiveReports',
},
{
logo: '$IMDEMOROOT$/ja/samples/tagBox/treeview/basic/img/SP.png',
name: 'SPREAD',
category: '表計算・グリッド',
description: 'Excel風のビューと表計算機能を実現するUIコンポーネント',
displayText: 'SPREAD',
},
{
logo: '$IMDEMOROOT$/ja/samples/tagBox/treeview/basic/img/DD.png',
name: 'DioDocs',
category: 'ドキュメントAPI',
description: 'ドキュメントを生成、更新するAPIライブラリ',
displayText: 'DioDocs',
},
],
expanded: true,
type: 'parent',
},
{
product: '入力・UI関連製品',
displayText: '入力・UI関連製品',
children: [
{
logo: '$IMDEMOROOT$/ja/samples/tagBox/treeview/basic/img/C1.png',
name: 'ComponentOne',
category: 'コンポーネントセット',
description: 'Visual Studioで利用する.NET Framework用コンポーネント',
displayText: 'ComponentOne',
},
{
logo: '$IMDEMOROOT$/ja/samples/tagBox/treeview/basic/img/IM.png',
name: 'InputMan',
category: '入力支援',
description: '快適な入力を実現する日本仕様入力コンポーネントセット',
displayText: 'InputMan',
},
{
logo: '$IMDEMOROOT$/ja/samples/tagBox/treeview/basic/img/MR.png',
name: 'MultiRow',
category: '多段明細',
description: '1レコード複数行&日付表示に最適なグリッドコンポーネント',
displayText: 'MultiRow',
},
],
expanded: true,
type: 'parent',
},
];
[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"] .description {
width: 210px;
white-space: normal;
}
[gcim-control-appearance="modern"] .template-parent-item {
display: flex;
align-items: center;
height: 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'
},
}
});