Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Kendo Numeric Textボックスのスピンボタンをどのように非表示にしますか?構成オプションで「spinners:false」を設定しようとしましたが(ドキュメントに従って)、スピンボタンが非表示になりません。ボタンの後ろからクロームを取り除くだけのようです。
var numeric = $("#initial").kendoNumericTextBox({ min: 0, max: 100, step:1, value:25 }).data("kendoNumericTextBox"); numeric.wrapper .find(".k-numeric-wrap") .addClass("expand-padding") .find(".k-select").hide();