0

我正在使用 Phonegap 构建一个 Android 应用程序,我发现了这个插件,我决定将它用于我的 datepicker 字段。我按照说明进行操作,但运行时遇到问题。

这是我的代码:

HTML:

<label for="schedule_start">Start date</label>
<input type="text" class="nativedatepicker" id="schedule_start" name="schedule[start_date]" value="{{start_date}}" required />

JS(我正在使用 Backbone.js)

FormView.prototype.defaultEvents = {
'focus .nativedatepicker': 'focusDatepicker'
};

// call when input focused

FormView.prototype.focusDatepicker = function(e) {
var currentField = $(this);
var myNewDate = Date.parse(currentField.val()) || new Date();

if(typeof myNewDate === "number"){ myNewDate = new Date (myNewDate); }

// Same handling for iPhone and Android
window.plugins.datePicker.show({
  date : myNewDate,
    mode : 'date', // date or time or blank for both
    allowOldDates : true
  }, function(returnDate) {
    var newDate = new Date(returnDate);
    currentField.val(newDate.toString("YYYY-MM-DD"));

    // This fixes the problem you mention at the bottom of this script with it not working a second/third time around, because it is in focus.
    currentField.blur();
  });
}; 

创建包后,我添加了datePickerPlugin.jsto/assets/www/js/DatePickerPlugin.javato 。/src/com/phonegap/plugin/com.phonegap.plugin

我想我在调用 datePickerPlugin.js 时可能会遇到一些问题,因为我没有收到我在文件中放入的警报,但我不确定如何解决这个问题。

提前致谢。

4

2 回答 2

0

我有一个类似的问题。我通过在 cordova.js 之后包含 datePickerPlugin.js 文件来解决它。

于 2013-03-20T22:27:07.150 回答
0

谢谢你们两个提示看看我的路径。看来我没有正确包含我的 Cordova 库文件。在我这样做之后,这一切都像魅力一样。

于 2013-03-28T13:51:12.007 回答