So I have this usecase where I need to format currency inputs. For formating we are using AutoNumeric.js which is working fine.
What I need is to store value with default format which is sent to backend on submit and display formated currency in input (for instance, I want to display €10,000 to user and I should get value like 10000 to be sent to backend). Values should be stored in it's own variables.
What is standard Angular way of doing this?
Thanks!