遅延読み込み

このサンプルでは、折りたたまれた親階層にダミーの子階層データが含まれています。親階層が展開されると、必要に応じて子階層のデータが読み込まれる遅延読み込みを確認できます。

コンボコントロールでは、ドロップダウンリストをツリーとして表示されるときに、子階層のデータを動的に読み込む(遅延読み込み)ことが可能です。 概要 遅延読み込み(Lazy Load)を使用する場合、子階層のコレクション(children)を空の配列 [] に設定し、コンストラクタdropDownTreeConfigのloadオプションを設定します。コールバック処理にcontext.itemで読み込まれる子ノードの項目を示し、ルードノードを読み込む場合はcontext.itemがnullになります。 以下のサンプルコードでは、折りたたまれた親ノードをクリックすると、遅延読み込みでダミーの子ノードが読み込まれて展開される処理を示しています。
import '@mescius/inputman/CSS/gc.inputman-js.css'; import { InputMan } from '@mescius/inputman'; import './styles.css'; InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern; new InputMan.GcComboBox(document.getElementById('gcComboBox1'), { dropDownType: InputMan.ComboDropDownType.Tree, dropDownTreeConfig: { load: (context) => { let children; if (context.item === null) { children = [ { text: '項目1', children: [] }, { text: '項目2', children: [] }, ]; } else { children = [ { text: context.item.text + '.子項目1', children: [] }, { text: context.item.text + '.子項目2', children: [] }, ]; } setTimeout(() => context.callback(children), 500); }, }, allowDropDownResize: true, dropDownOverflow: InputMan.ScrollBars.Both, });
<!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> 遅延読み込み<br> <select id="gcComboBox1"></select> </div> </body> </html>
body { min-height: 300px; }
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' }, } });