BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Hi Robert,
Thanks for using Syncfusion products,
We have analyzed your query. We have prepared the simple sample based on your requirement.
Please get the sample from below location
In this sample, in numeric text box change event, we have validated the numeric text box value and sets to default the value to textboxif the numeric text box value is not a number.
Please refer the below code snippet
$scope.valueChange = function(args) { if (!angular.isNumber(args.value)) { s=$("#numeric").ejNumericTextbox('instance'); $scope.$apply($scope.nvalue=""); // bind the value to empty before bind the same value to model. $scope.$apply($scope.nvalue=1); } } |
Please check with given sample andlet us know if you further quieries,
Regards,
Sasikala Nagarajan