AureliaでWickedpickerを使用します。 (JSPM NPMインストール:wickedpickerを)私はJSPM経由wickedpickerをインストールAureliaでWickedPickerを使用する
import "wickedpicker"
.
.
constructor(){
let options = {
now: "12:35", //hh:mm 24 hour format only, defaults to current time
twentyFour: false, //Display 24 hour format, defaults to false
upArrow: 'wickedpicker__controls__control-up', //The up arrow class selector to use, for custom CSS
downArrow: 'wickedpicker__controls__control-down', //The down arrow class selector to use, for custom CSS
close: 'wickedpicker__close', //The close class selector to use, for custom CSS
hoverState: 'hover-state', //The hover state class to use, for custom CSS
title: 'Timepicker', //The Wickedpicker's title,
showSeconds: false, //Whether or not to show seconds,
timeSeparator: ' : ', // The string to put in between hours and minutes (and seconds)
secondsInterval: 1, //Change interval for seconds, defaults to 1,
minutesInterval: 1, //Change interval for minutes, defaults to 1
beforeShow: null, //A function to be called before the Wickedpicker is shown
afterShow: null, //A function to be called after the Wickedpicker is closed/hidden
show: null, //A function to be called when the Wickedpicker is shown
clearable: false, //Make the picker's input clearable (has clickable "x")
};
let timepicker = $('.timepicker').wickedpicker(options);
:私はこのコードを持っている
<require from="wickedpicker"></require>
<input type="text" name="timepicker" class="timepicker"/>
...
を、ビュー・モデルに:私は、HTMLファイルに次のコードを追加し、私は上のクリックしたとき入力ボックスには何の効果もなくエラーもありません。 私を助けてもらえますか?
ありがとうございました。私はそれを添付ファイルに追加しました。そして今、私は時間を見ることができます(例えば21:25)。しかし、私がそれをクリックすると、うまくいきません。私はちょうどIRレーベルのポジションで(21:35)、ピッカーは動作しません。何が問題ですか??? – Sohrab
間違いはありますか? [基本サンプル要旨](https://gist.github.com/jdanyow/7542e061bc940cde506b)を使用して[GistRun](https://gist.github.com/jdanyow/7542e061bc940cde506b)で問題を再現するのが最善の方法です。 。 –