-1

I´d like to print a Full Currency Value using Angula.js.

<input class="receiptFrom" type="text" ng-model="receiptFrom"></input>

<label>{{ receiptValue | currency }}</label>

By doing this, when I input 1000, my label prints $1,000.00.

I´d like it to print One Thousand Dollars.

Is it possible?

ThalesMiguel
  • 194
  • 2
  • 13
  • You need to build a custom filter - like this one: https://scotch.io/tutorials/building-custom-angularjs-filters. – Donal Mar 14 '16 at 17:48

1 Answers1

0

You have to build custom controller for that

Umair Khan
  • 283
  • 3
  • 13