I have a KendoUI numerictextbox in my page. When I use it withou AngularJS directives, it works fine.
<input id="currency" type="number" value="30" min="0" max="100" />
$(document).ready(function () {
$("#currency").kendoNumericTextBox({
format: "R$ #",
decimals: 0
});
});
When I change the component atributes to accept AngularJS directives, the format stops working:
<input id="currency" name="currency" kendo-numeric-text-box k-value="30" k-min="0" k-max="100" />
$(document).ready(function () {
$("#currency").kendoNumericTextBox({
format: "R$ #",
decimals: 0
});
});
There is something needed to do this work (format) when using AngularJS directives?
Regards.