Currency Filters
by mohitagrawalmca
HTML
<div ng-controller="StdController">
<b> <div>Filters</div></b>
<hr/>
<b>Currency Format:</b>
<br/> Input :
<input type="number" ng-model="Amount" />
<br/>
<br/> Actual amount:{{Amount}}
<br/> Default Curency symbole : {{Amount |currency}}
<br/> Custom Curency symbole : {{Amount |currency:'Rs. ' }}
<br/> Custom Curency symbole Without fraction : {{Amount |currency:'Rs. ':0 }}
</div>
JavaScript
var myApp = angular.module('myApp', []);
myApp.controller('StdController', function($scope) {
$scope.Amount = 99.999;
});