カスタム項目

このサンプルではタグボックスコントロールにカスタム項目の入力を許可する方法を示しています。

タグボックスコントロールはドロップダウンリスト以外のカスタム項目を設定することができます。 また、allowCustomTagプロパティをfalseに設定すると、ドロップダウンリストから既存項目のみ選択可能になり、新たな入力値を設定することができなくなります。
import '@grapecity/inputman/CSS/gc.inputman-js.css'; import { InputMan } from '@grapecity/inputman'; import { products } from './data'; InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern; new InputMan.GcTagBox(document.getElementById('tagbox1'), { items: products, width: 400, height: 80, allowCustomTag: false }); new InputMan.GcTagBox(document.getElementById('tagbox2'), { items: products, width: 400, height: 80, });
<!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> <div> このタグボックスはカスタム項目を入力不可に設定しています。<br /> ドロップダウンリストからのみアイテムを選択することができます。<br /> <div id="tagbox1"></div> </div> <br /> <div> このタグボックスはカスタム項目を入力可能に設定しています。<br /> 入力エリアにフォーカスし、任意の文字を入力してみてください。<br /> <div id="tagbox2"></div> </div> </body> </html>
export const products = ['果汁100%オレンジ', '果汁100%グレープ', '果汁100%レモン', '果汁100%ピーチ', 'コーヒーマイルド', 'コーヒービター'];
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' }, } });