日付時刻コントロールのドロップダウンカレンダーまたはドロップダウンピッカーにデフォルト日付を設定する機能について解説します。
デフォルト日付の設定方法
コンストラクタのdefaultDateオプションに日付を設定します。日付時刻コントロールの値がnullの場合のみデフォルト日付を設定できます。
import '@mescius/inputman/CSS/gc.inputman-js.css';
import './styles.css';
import { InputMan } from '@mescius/inputman';
InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern;
let oneMonthLater = new Date();
oneMonthLater.setDate(new Date().getDate() + 30);
const gcDateTime1 = new InputMan.GcDateTime(document.getElementById('gcDateTime1'), {
showDropDownButton: true,
value: null,
autoDropDown: true,
dropDownConfig: {
dropDownType: GC.InputMan.DateDropDownType.Calendar,
defaultDate: oneMonthLater,
},
container: document.getElementById('container1'),
});
const gcDateTime2 = new InputMan.GcDateTime(document.getElementById('gcDateTime2'), {
showDropDownButton: true,
value: null,
autoDropDown: true,
dropDownConfig: {
dropDownType: GC.InputMan.DateDropDownType.Picker,
defaultDate: oneMonthLater,
},
container: document.getElementById('container2'),
});
const defaultDate = new InputMan.GcDateTime(document.getElementById('defaultDate'), {
displayFormatPattern: 'yyy/MM/dd',
formatPattern: 'yyy/MM/dd',
value: oneMonthLater,
showDropDownButton: true,
dropDownConfig: {
dropDownType: GC.InputMan.DateDropDownType.Calendar,
},
});
defaultDate.onValueChanged((sender, eArgs) => {
gcDateTime1.getDropDownCalendar().defaultDate = defaultDate.value;
gcDateTime2.getDropDownCalendar().defaultDate = defaultDate.value;
});
gcDateTime1.getDropDownWindow().open();
gcDateTime2.getDropDownWindow().open();
<!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 id="container1">
<p>ドロップダウンカレンダー</p>
<input id="gcDateTime1">
</div>
<div id="container2">
<p>ドロップダウンピッカー</p>
<input id="gcDateTime2">
</div>
</div>
<table class="sample">
<tr>
<th>デフォルト日付</th>
<td>
<input id="defaultDate">
</td>
</tr>
</table>
</body>
</html>
.flexbox {
display: flex;
flex-wrap: wrap;
}
.flexbox>div {
height: 350px;
width: 300px;
background-color: #f8f8f8;
}
table.sample .gcim-calendar__outter-container tr > * {
border-width: 0px;
}
[gcim-control-appearance="modern"] .flexbox {
display: flex;
flex-wrap: wrap;
}
[gcim-control-appearance="modern"] .flexbox>div {
height: 450px;
width: 300px;
background-color: #f8f8f8;
}
table.sample .gcim-calendar__outter-container tr > * {
border-width: 0px;
}
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'
},
}
});