3
2

More than 5 years have passed since last update.

datetimepickerのテキストボックス上でマウスホイールを動かせなくする方法

Posted at

jQueryのDatetimepickerについては、Qiitaでもいくつか記事があります。

こことか
https://qiita.com/tagosaku324/items/ee6391e29405421e8056

マウスホイールの制御についての日本語の記事がなかったので書いておきます。
本家をみたら書いてあるんですが、英語がよくわからない人のために(汗)
https://xdsoft.net/jqplugins/datetimepicker/

scrollInputだけで良さそうですが、それ系のもいっしょにFalseしておけばOK。
これだけです。

option value
scrollMonth true
scrollTime true
datetimepicker.js
$('.myDatePicker').datetimepicker({
    scrollMonth : false,
    scrollInput : false
});
3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2