0
Могу ли я узнать, в каком направлении был нажат numerictextbox - вверх или вниз?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);
}
});
}