If I initialize input box which has ngModel attached to it like this:
angular.element(element.find("input")).kendoNumericTextBox({
decimals : 4,
format : "#.####"), // to match step and format
step : step,
value : value,
min : scope.min,
max : scope.max
});
Now, I enter value:
3.33333333
in it and it gets displayed:
3.3333
but ngModel is still set to 3.33333333
Is this a Kendo-AngularJS bug?