コンボコントロールでは、ドロップダウンリストの複数のアイテムを同時に選択する場合、親ノードの選択可否や選択値の構成などを設定できます。
親ノードの選択可否
selectableNodeTypeプロパティを利用することで、複数選択の時にドロップダウンリストにある親ノードが選択できるかどうかを設定できます。設定できる値(TreeViewNodeType列挙体)は、以下の通りです。既定値はAllです。
TreeViewNodeTypeの値
説明
All
親ノードが選択可能
Leaf
親ノードが選択不可
設定例は以下の通りです。
親ノードと子ノードの依存関係
flatプロパティをtrueに設定すると、親ノードを選択するても配下の子ノードが自動的に選択されないことを設定できます。設定例は以下の通りです。
選択値の構成
コンボコントロールのドロップダウンリストで複数選択を有効にした場合はvalueConsistsOfプロパティを使用して、親ノードにあるすべての子ノードが選択される場合の値の構成を設定することができます。valueConsistsOfプロパティに設定できる値は次のとおりで、既定値はValueConsistsOf.NonLeafPriorityです。
ValueConsistsOfの値
説明
NonLeafPriority
選択値は親ノードで構成される
All
選択値は親ノードと子ノードの両方で構成される
LeafPriority
選択値は子ノードで構成される
設定例は以下の通りです。
import '@mescius/inputman/CSS/gc.inputman-js.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: ['コーヒーマイルド', 'コーヒービター'],
}];
const gcComboBox1 = new InputMan.GcComboBox(document.getElementById('gcComboBox1'), {
items: products,
dropDownType: InputMan.ComboDropDownType.Tree,
isMultiSelect: true,
displayMemberPath: 'product',
checkOnClick: true,
width: 300,
allowDropDownResize: true,
});
const gcComboBox2 = new InputMan.GcComboBox(document.getElementById('gcComboBox2'), {
items: products,
dropDownType: InputMan.ComboDropDownType.Tree,
isMultiSelect: true,
displayMemberPath: 'product',
dropDownTreeConfig: {
selectableNodeType: InputMan.TreeViewNodeType.Leaf,
},
checkOnClick: true,
width: 300,
allowDropDownResize: true,
});
const gcComboBox3 = new InputMan.GcComboBox(document.getElementById('gcComboBox3'), {
items: products,
dropDownType: InputMan.ComboDropDownType.Tree,
isMultiSelect: true,
displayMemberPath: 'product',
dropDownTreeConfig: {
flat: true,
},
checkOnClick: true,
width: 300,
allowDropDownResize: true,
});
document.getElementById('valueConsistsOf').addEventListener('change', (e) => {
gcComboBox1.dropDownTree.valueConsistsOf =
valueConsistsOf[e.target.selectedIndex];
});
const valueConsistsOf = [
InputMan.ValueConsistsOf.NonLeafPriority,
InputMan.ValueConsistsOf.All,
InputMan.ValueConsistsOf.LeafPriority,
];
<!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>
<select id="gcComboBox1"></select>
</div>
<div>
親ノードが選択不可<br>
<select id="gcComboBox2"></select>
</div>
</div>
<br><br><br><br><br><br>
<table class="sample">
<tr>
<th>選択値の構成</th>
<td>
<select id="valueConsistsOf">
<option selected>親ノードのみ</option>
<option>親ノードと子ノード</option>
<option>子ノードのみ</option>
</select>
</td>
</tr>
</table>
<h4>親ノードを選択しても、子ノードは自動的には選択されません。</h4>
<div id="gcComboBox3"></div>
</body>
</html>
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'
},
}
});