1
dateContainer.datepicker({
    defaultDate: this.filterValue,
    changeMonth: true,
    changeYear: true,
    dateFormat: 'MM-dd-yyyy',
    onSelect: function (dateText, t) {
        var type = $context.container.find(".grid-filter-type").val();
        $context.cb(type, dateText);
    }
});

我正在使用 gridmvc.js 和 bootstrap-datepicker.js 插件。OnSelect 事件无论如何都不会触发。我不知道是什么原因?

4

1 回答 1

0

不知道是什么原因,问题就出现了。但我已经找到了临时解决方案。对于解决方案,您必须更改 bootstrap-datepicker.js 中的一行代码。(在更改和使用插件之前检查许可证)

case 'span':
                        if (!target.is('.disabled')) {
                            this.viewDate.setUTCDate(1);
                            if (target.is('.month')) {
                                var day = 1;
                                var month = target.parent().find('span').index(target);
                                var year = this.viewDate.getUTCFullYear();
                                this.viewDate.setUTCMonth(month);
                                this._trigger('changeMonth', this.viewDate);
                                if (this.o.minViewMode === 1) {
                                    this._setDate(UTCDate(year, month, day,0,0,0,0));
                                }
                            } else {
                                var year = parseInt(target.text(), 10)||0;
                                var day = 1;
                                var month = 0;
                                this.viewDate.setUTCFullYear(year);
                                this._trigger('changeYear', this.viewDate);
                                if (this.o.minViewMode === 2) {
                                    this._setDate(UTCDate(year, month, day,0,0,0,0));
                                }
                            }
                            this.showMode(-1); this.fill();

这里出现问题是因为调用了 this.fill() 。

如果您在插件中评论此行,日期选择器不会在月份和年份更改时隐藏任何方式。或者您可以通过以下方式进行更改,

if (target.is('.month')) {
                                if (!this._o.changeMonth) {
                                    this.fill();
                                }
                            }
                            else {
                                if (!this._o.changeYear) {
                                    this.fill();
                                }
                            }

然后根据您在创建日期选择器时提供的参数,这将起作用。

于 2013-11-08T10:32:58.350 回答