これを Appcelerator Q&A に投稿しましたが、その場所はちょっと死んでいるような気がします。そう...
showDate/TimePickerDialog に関する 1.8のバグ レポートを確認し、2.0.1 にアップグレードしました。日付ピッカーは正常に動作しますが、時間ピッカーは表示もエラーも発生しません。
これは機能します:
datepicker.showDatePickerDialog({
value: My.date,
callback : function(e) {
if(!e.cancel) {
}
}
});
これは何もしません:
timepicker.showTimePickerDialog({
value: My.date,
callback : function(e) {
if(!e.cancel) {
}
}
});
と:
var datepicker = Ti.UI.createPicker({
type : Ti.UI.PICKER_TYPE_DATE,
minDate : new Date(),
value : My.date,
selectionIndicator : false,
useSpinner : true,
height : height,
zIndex : 5
});
var timepicker = Ti.UI.createPicker({
useSpinner : true,
selectionIndicator : true,
type : Ti.UI.PICKER_TYPE_TIME,
height : height,
value : My.date,
zIndex : 5
});
日付は機能するのに時間が機能しない理由はありますか?