BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<input id="datePosition" ng-model=val type="text" class="form-control" ej-numerictextbox e-minvalue="min" e-value="val" e-maxvalue="max" /> |
<script type="text/javascript">
angular.module('syncApp', ['ejangular']) .controller('Numericbox', function ($scope) { $scope.val = 100; $scope.min = 1; $scope.max = 999; $scope.funclick = function () { // $scope.val = 400; var x = $("#datePosition").data("ejNumericTextbox"); x.option("value", 400); } }); </script> |
http://jsplayground.syncfusion.com/octhevdf
To know more about the list of properties, methods, and events available in dialog, please check the following link
http://help.syncfusion.com/js/api/ejtextboxes
To know more about getting started sample, please check the following link
http://help.syncfusion.com/js/numerictextbox/getting-started
Regards,
Francis Paul A