お世話になります。
数値フィールドにスピンボタンを付けたく、以下のスレを参考にさせていただき、下記Javascriptを実装しましたが、スピンボタンが表示されません。
恐れ入りますが、解決方法をご教示いただけないでしょうか。
よろしくお願いします。
■参考にしたスレ
■実装したコード
jQuery.noConflict();
(function($) {
“use strict”;
kintone.events.on([“app.record.create.show”,“app.record.edit.show”], function(event) {
$(‘.gaia-ui-decimal-input-input input’).spinner({ step:1 }).css(‘padding’, ‘0px 20px 0 8px’);
return event;
});
})(jQuery);
■jQuery、jQueryUI、css
https://js.cybozu.com/jquery/3.7.1/jquery.min.js
https://js.cybozu.com/jqueryui/1.13.3/jquery-ui.min.js
https://js.cybozu.com/jqueryui/1.13.3/themes/smoothness/jquery-ui.css
これだけでは足りないのでしょうか?
ご教示よろしくお願いします。