リストコントロールでは、リストアイテムとして表示する内容を配列などと連結させることができます。
文字配列に連結
setItemsメソッドを使用することで、文字配列をコンボコントロールに連結し、リストアイテムとして表示させることができます。
次のサンプルコードは、文字配列をリストコントロールに連結する例です。
オブジェクト配列に連結
コンストラクタの第二引数にItems要素としてオブジェクト配列を設定することで、その配列の内容をリストアイテムとして表示させることができます。
次のサンプルコードは、オブジェクト配列をリストコントロールに連結する例です。
option要素から生成
リストアイテムとして表示する内容は、option要素から生成することができます。
次のサンプルコードは、option要素を動的に設定する例です。
import '@mescius/inputman/CSS/gc.inputman-js.css';
import { InputMan } from '@mescius/inputman';
import { strProducts, objProducts } from './data';
InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern;
// 文字配列に連結
var gcListBoxStrings = new InputMan.GcListBox(document.getElementById('gcListBoxStrings'), {
items: strProducts
});
gcListBoxStrings.addEventListener(
InputMan.GcListBoxEvent.SelectedChanged,
(sender) => document.getElementById('selectedItem').innerText = sender.getSelectedValue()
);
// オブジェクト配列に連結
var gcListBoxObjects = new InputMan.GcListBox(document.getElementById('gcListBoxObjects'), {
items: objProducts,
displayMemberPath: 'name',
valueMemberPath: 'name'
});
gcListBoxObjects.addEventListener(
InputMan.GcListBoxEvent.SelectedChanged,
(sender) => document.getElementById('selectedItem').innerText = sender.getSelectedValue()
);
// option要素から生成
var gcListBoxDom = new InputMan.GcListBox(document.getElementById('gcListBoxDom'));
gcListBoxDom.addEventListener(
InputMan.GcListBoxEvent.SelectedChanged,
(sender) => document.getElementById('selectedItem').innerText = sender.getSelectedValue()
);
<!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="gcListBoxStrings"></select>
</div>
<div>
オブジェクト配列に連結<br>
<select id="gcListBoxObjects"></select>
</div>
<div>
option要素から生成<br>
<select id="gcListBoxDom">
<option>果汁100%オレンジ</option>
<option>果汁100%グレープ</option>
<option>果汁100%レモン</option>
<option>果汁100%ピーチ</option>
<option>コーヒーマイルド</option>
<option>コーヒービター</option>
</select>
</div>
</div>
選択された項目:<span id="selectedItem"></span>
</body>
</html>
export const strProducts = [
'果汁100%オレンジ',
'果汁100%グレープ',
'果汁100%レモン',
'果汁100%ピーチ',
'コーヒーマイルド',
'コーヒービター'
];
export const objProducts = [
{ name: '果汁100%オレンジ' },
{ name: '果汁100%グレープ' },
{ name: '果汁100%レモン' },
{ name: '果汁100%ピーチ' },
{ name: 'コーヒーマイルド' },
{ name: 'コーヒービター' }
];
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'
},
}
});