Hi,
I found a strange behaviour of the numerictextbox's change event. If I change the value of the widget from code it doesn't fire the change event:
<
body
>
<
input
id
=
"numerictextbox"
/>
<
script
>
var textBox = $("#numerictextbox").kendoNumericTextBox({
change: function() {
var value = this.value();
alert(value);
}
}).data("kendoNumericTextBox");
textBox.value(12345); // this should fire change event.
</
script
>
</
body
>
Is it by design behaviour, or is it a bug?