Bootstrap Datepicker (avoid text input or restrict manual input)

后端 未结 4 1626
旧时难觅i
旧时难觅i 2021-02-02 10:49

Here is my website: http://splash.inting.org/wp/

I currently use the Bootstrap Datepicker (range branch) for my Call Date field and it\'s been great.

Although I

4条回答
  •  青春惊慌失措
    2021-02-02 11:13

    I managed to get acceptable solution as follow:

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

    Hope it works for you too!

提交回复
热议问题