JQuery UI datepickerで選択した日付を選択したときにonSelectイベントをトリガーするにはどうすればよいですか?
実演デモ: http://jsfiddle.net/YbLnj/
ドキュメント: http://jqueryui.com/demos/datepicker/
コード
$("#dt").datepicker({
onSelect: function(dateText, inst) {
var date = $(this).val();
var time = $('#time').val();
alert('on select triggered');
$("#start").val(date + time.toString(' HH:mm').toString());
}
});
次のコードを使用します。
$(document).ready(function() {
$('.date-pick').datepicker( {
onSelect: function(date) {
alert(date)
},
selectWeek: true,
inline: true,
startDate: '01/01/2000',
firstDay: 1,
});
});
自分でパラメータを調整できます:-)
ユーザーが日付を選択せずに日付選択ダイアログを閉じる場合にも興味がある場合(私の場合は日付も選択しないと意味がありません)、onClose
イベントにバインドできます。
$('#datePickerElement').datepicker({
onClose: function (dateText, inst) {
//you will get here once the user is done "choosing" - in the dateText you will have
//the new date or "" if no date has been selected
});
$(".datepicker").datepicker().on("changeDate", function(e) {
console.log("Date changed: ", e.date);
});
日付ピッカーがグリッドの行にある場合、次のようなものを試してください
editoptions : {
dataInit : function (e) {
$(e).datepicker({
onSelect : function (ev) {
// here your code
}
});
}
}