web-dev-qa-db-ja.com

Bootstrap datepicker無効化機能

私のプロジェクトには、bootstrap datepickerがまだ提供していないと思う機能が必要です。ユーザーがその値を変更できないように、datepickerフィールドを有効/無効にしたいのですが。 readOnly機能のようなもの。

それについて何かアイデアはありますか?

前もって感謝します。

10
Juan Luis

解決策を見つけましたが、bootstrapカレンダーコードを変更するだけで、this._events部分をオーバーライドしてキーアップ/ダウンイベントを無効にすることができました。

_buildEvents: function(){
        if (this.isInput) { // single input
            this._events = [
                [this.element, {
                    focus: $.proxy(this.show, this),
                    keyup: $.proxy(this.update, this),
                    keydown: $.proxy(this.keydown, this)
                }]
            ];
        }
        else if (this.component && this.hasInput){ // component: input + button
            this._events = [
                // For components that are not readonly, allow keyboard nav
                [this.element.find('input'), {
                    //focus: $.proxy(this.show, this),
                    //keyup: $.proxy(this.update, this),
                    //keydown: $.proxy(this.keydown, this)
                }],
                [this.component, {
                    click: $.proxy(this.show, this)
                }]
            ];
        }
        else if (this.element.is('div')) {  // inline datepicker
            this.isInline = true;
        }
        else {
            this._events = [
                [this.element, {
                    click: $.proxy(this.show, this)
                }]
            ];
        }

        this._secondaryEvents = [
            [this.picker, {
                click: $.proxy(this.click, this)
            }],
            [$(window), {
                resize: $.proxy(this.place, this)
            }],
            [$(document), {
                mousedown: $.proxy(function (e) {
                    // Clicked outside the datepicker, hide it
                    if (!(
                        this.element.is(e.target) ||
                        this.element.find(e.target).length ||
                        this.picker.is(e.target) ||
                        this.picker.find(e.target).length
                    )) {
                        this.hide();
                    }
                }, this)
            }]
        ];
    },
0
Juan Luis
$("#nicIssuedDate").prop('disabled', true);

これは私にとってはBootstrap Datepicker and Jquery

10

次のことができます。

無効にする場合:

$("#date").datepicker("option", "disabled", true);

および有効化のために:

$("#date").datepicker("option", "disabled", false);

3
Sadiksha Gautam

これを行うだけです:

$('#idOfYourCalendar').data("DateTimePicker").disable();

公式ドキュメント: https://eonasdan.github.io/bootstrap-datetimepicker/Functions/

onRender Bootstrapのイベントを使用できます。これによりが無効になります。 datepicker

onRender:このイベントは、日付ピッカー内で日がレンダリングされたときに発生します。文字列を返す必要があります。日が選択されないようにするには、「無効」を返します。

2
Praveen

オプションenabledDatesを、表示したい日付のみの配列に設定してみてください。また、日付をその日付に設定します。その後、他のすべての日付は無効になります。

enabledDates: ['your_date_to_show'],

例えば。

  $('#Date').datetimepicker({
    inline: true,
    viewMode: "days",
    format: "YYYY-MM-DD",
    enabledDates: [fetchDate("Date")],
  })
  .data("DateTimePicker")
  .date(fetchDate("Date"));

  $('#Date').ready(function (){
    $("#Date").data("DateTimePicker").date(fetchDate("Date"));
  });
1
David Black

このコードを使用する

$("#nicIssuedDate").prop('disabled', true);
1

私は次のように許容できる解決策を得ることができました:

$(".date").datetimepicker({
                defaultDate: moment(),
                format: 'YYYY-MM-DD'
            }).end().on('keypress paste', function (e) {
                e.preventDefault();
                return false;
            });

それがあなたにもうまくいくことを願っています!

0
Ye Yint