ドロップダウンスライダーは、数値コントロールでドロップダウンボタンを押下してスライダーを表示されます。
ドロップダウンスライダーの設定
ドロップダウンスライダーを有効にするには、showDropDownSliderプロパティをtrueに設定します。sliderButtonPositionプロパティを設定することでスライダーを表示するためのボタンの表示位置を変更します。初期化以降のボタン表示の位置を変更することができません。
sliderButtonPositionプロパティに設定できる値は以下のとおりで、既定値はDropDownButtonAlignment.RightSideです。
DropDownButtonAlignmentの値
説明
LeftSide
ドロップダウンボタンを左側に設定します。
RightSide
ドロップダウンボタンを右側に設定します。
注意事項
showDropDownSliderプロパティは初期化時のみ設定できます。
ShowDropDownSliderはshowCalculatorAsPopup、showCalculatorAsDropDown、showNumericPadと同時に設定される場合の優先順位は以下のとおりです。
import '@mescius/inputman/CSS/gc.inputman-js.css';
import { InputMan } from '@mescius/inputman';
import './styles.css';
InputMan.appearanceStyle = InputMan.AppearanceStyle.Modern;
const gcNumber1 = new InputMan.GcNumber(
document.getElementById('gcNumber1'),
{
showDropDownSlider: true,
maxValue: 100,
minValue: 0,
value: 50,
dropDownConfig: {
step: 10,
marks: [0, 22, 50, 78, 100],
keyStep: 2,
},
container: document.getElementById("container1"),
}
);
const gcNumber2 = new InputMan.GcNumber(
document.getElementById('gcNumber2'),
{
showDropDownSlider: true,
sliderButtonPosition: InputMan.DropDownButtonAlignment.LeftSide,
maxValue: 100,
minValue: 0,
value: 50,
dropDownConfig: {
step: 10,
marks: [0, 22, 50, 78, 100],
keyStep: 2,
},
container: document.getElementById("container2"),
}
);
<!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="gcNumber1">
</div>
<div id="container2">
<p>ドロップダウンボタンが左に表示されます。</p>
<input id="gcNumber2">
</div>
</div>
</body>
</html>
body {
padding-bottom: 10rem;
}
.flexbox {
display: flex;
flex-wrap: wrap;
}
.flexbox>div {
height: 300px;
width: 300px;
background-color: #f8f8f8;
}
#container2 {
display: flex;
flex-direction: column-reverse;
align-items: flex-start;
}
body {
padding-bottom: 10rem;
}
[gcim-control-appearance="modern"] .flexbox {
display: flex;
flex-wrap: wrap;
}
[gcim-control-appearance="modern"] .flexbox>div {
height: 300px;
width: 300px;
background-color: #f8f8f8;
}
[gcim-control-appearance="modern"] #container2 {
display: flex;
flex-direction: column-reverse;
align-items: flex-start;
}
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'
},
}
});