0
我可以知道在哪個方向點擊了數字文本框 - 向上或向下?Kendo numerictextbox被點擊或向下
$('<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);
}
});
}