概要

このサンプルでは日付時刻コントロールの和暦表示、時刻表示、ドロップダウン表示など様々な表示方法を確認することができます。

日付時刻(GcDateTime)コントロールは、和暦表示や範囲指定、またスピンによる入力にも対応し、強力な日付入力インターフェイスを短時間で構築できます。また、カレンダーのドロップダウン表示機能を備え、視覚的な日付入力もサポートします。
import '@mescius/inputman/CSS/gc.inputman-js.css'; import { InputMan } from '@mescius/inputman'; InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern; const gcDateTime1 = new InputMan.GcDateTime(document.getElementById('gcDateTime1'), { displayFormatPattern: 'ggg E年M月d日', formatPattern: 'yyyy/MM/dd', showSpinButton: true }); const gcDateTime2 = new InputMan.GcDateTime(document.getElementById('gcDateTime2'), { displayFormatPattern: 'tt h時m分s秒', formatPattern: 'HH:mm:ss', showSpinButton: true }); const gcDateTime3 = new InputMan.GcDateTime(document.getElementById('gcDateTime3'), { displayFormatPattern: 'yyy年M月d日', formatPattern: 'yyyy/MM/dd', showDropDownButton: true, dropDownConfig: { dropDownType: InputMan.DateDropDownType.Calendar } }); const gcDateTime4 = new InputMan.GcDateTime(document.getElementById('gcDateTime4'), { showDropDownButton: true });
<!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> <input id="gcDateTime1"> </div> <div> 時刻<br> <input id="gcDateTime2"> </div> <div> ドロップダウンカレンダー<br> <input id="gcDateTime3"> </div> <div> ドロップダウン日付時刻ピッカー<br> <input id="gcDateTime4"> </div> </div> </body> </html>
body { padding-bottom: 15rem; min-height: 200px; }
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' }, } });