0

数値テキストボックスがクリックされた方向 (上または下) を知ることはできますか?

                    $('<input name="' + options.field + '"/>').appendTo(container).kendoNumericTextBox({
                        min: 1,
                        max: 9,
                        decimals: 1,
                        format: "n0",
                        value: 1,
                        spin: function(el) {
                                var count = this.value(),
                                    model = options.model;
                                model.set("quantity", count);
                                addCharacteristic(count);
                                setPrice(e, count, model);
                        }
                });
            }
4

1 に答える 1