タグボックスコントロールでは、データ項目が階層データの場合、ドロップダウンリストに表示する内容をツリーとして表示できます。
親ノードの選択可否
selectableNodeTypeプロパティを利用することで、ドロップダウンリストにある親ノードが選択できるかどうかを設定できます。設定できる値(TreeViewNodeType列挙体)は、以下の通りです。既定値はAllです。
TreeViewNodeTypeの値
説明
All
親ノードが選択可能
Leaf
親ノードが選択不可
設定例は以下の通りです。
import '@mescius/inputman/CSS/gc.inputman-js.css';
import './styles.css';
import { InputMan } from '@mescius/inputman';
InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern;
const products = [
{
product: 'ジュース',
children: [{
product: 'ストレートジュース',
children: ['果汁100%オレンジ', '果汁100%グレープ', '果汁100%レモン', '果汁100%ピーチ'],
expanded: true,
}, {
product: 'ブレンドジュース',
children: ['オレンジブレンド', 'グレープブレンド', 'レモンブレンド', 'ピーチブレンド']
}
],
expanded: true,
},
{
product: 'コーヒー',
children: ['コーヒーマイルド', 'コーヒービター'],
}];
new InputMan.GcTagBox(document.getElementById('tagbox1'), {
items: products,
width: 240,
dropDownType: InputMan.TagBoxDropDownType.Tree,
tagTextMemberPath: 'product',
dropDownDisplayMemberPath: 'product',
dropDownTreeConfig: {
selectableNodeType: InputMan.TreeViewNodeType.Leaf,
},
});
new InputMan.GcTagBox(document.getElementById('tagbox2'), {
items: products,
width: 240,
dropDownType: InputMan.TagBoxDropDownType.Tree,
tagTextMemberPath: 'product',
dropDownDisplayMemberPath: 'product',
});
<!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" class="custom"></div>
</div>
</div>
</body>
</html>
.custom .gcim__treeview .viewport .tree-item {
display: flex;
align-items: center;
font-weight: bold;
height: 100%;
color: red;
}
body {
min-height: 350px;
}
[gcim-control-appearance="modern"] .viewport {
line-height: 1.3;
}
[gcim-control-appearance="modern"] .custom .gcim__treeview .viewport .tree-item {
display: flex;
align-items: center;
font-weight: bold;
height: 100%;
color: red;
}
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'
},
}
});