コンボコントロールでは、ドロップダウンリストに表示するデータを動的に読み込む(ロードオンデマンド)ことが可能です。
概要
loadプロパティを使用することで、ドロップダウンリストのリストアイテムがロードされるときに実行する処理を設定することができます。また、pageSizeプロパティを使用することで、ロードオンデマンドでデータを表示する場合に、一度に読み込むアイテムの数を設定することが可能です。
以下のサンプルコードでは、ロードオンデマンドで一度に読み込むアイテムの数を「20」に設定しているので、ドロップダウンリストを最後のアイテムまでスクロールさせると、20個ずつリストアイテムが動的に追加されます。
また、clearItemsメソッドを実行することで、読み込まれていたドロップダウンリストのアイテムをクリアし、最初のアイテムからリロードすることが可能です。
import '@grapecity/inputman/CSS/gc.inputman-js.css';
import './styles.css';
import { InputMan } from '@grapecity/inputman';
InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern;
const gcComboBox = new InputMan.GcComboBox(document.getElementById('gcComboBox'), {
virtualMode: true,
load: (context) => {
setTimeout(() => {
var items = generateItems(context.pageNumber);
context.success(items);
}, 500)
},
});
const pageSize = 20;
const generateItems = (pageNumber) => {
let items = [];
for (let i = 0; i < pageSize; i++) {
items.push('項目' + (pageNumber * pageSize + i));
}
return items;
}
document.getElementById('clearBtn').addEventListener('click', (e) => {
gcComboBox.clearItems();
});
<!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>
System.import('./src/app');
</script>
</head>
<body>
<select id="gcComboBox"></select>
<button id="clearBtn">最初からリロードする</button>
</body>
</html>
body {
min-height: 220px;
}
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: {
'@grapecity/inputman': 'npm:@grapecity/inputman/index.js',
'@grapecity/inputman/CSS': 'npm:@grapecity/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'
},
}
});