CurrencyInputComponent
CurrencyInputComponent
A form input control which displays currency in decimal format, whilst working with the integer cent value in the background.
Example
<vdr-currency-input
    [(ngModel)]="entityPrice"
    [currencyCode]="currencyCode"
></vdr-currency-input>
Signature
class CurrencyInputComponent implements ControlValueAccessor, OnInit, OnChanges, OnDestroy {
    @Input() disabled = false;
    @Input() readonly = false;
    @Input() value: number;
    @Input() currencyCode = '';
    @Output() valueChange = new EventEmitter();
    prefix$: Observable<string>;
    suffix$: Observable<string>;
    hasFractionPart = true;
    onChange: (val: any) => void;
    onTouch: () => void;
    _inputValue: string;
    readonly precision: number;
    readonly precisionFactor: number;
    constructor(dataService: DataService, currencyService: CurrencyService)
    ngOnInit() => ;
    ngOnChanges(changes: SimpleChanges) => ;
    ngOnDestroy() => ;
    registerOnChange(fn: any) => ;
    registerOnTouched(fn: any) => ;
    setDisabledState(isDisabled: boolean) => ;
    onInput(value: string) => ;
    onFocus() => ;
    writeValue(value: any) => void;
}
- Implements: ControlValueAccessor,OnInit,OnChanges,OnDestroy
disabled
property
readonly
property
value
property
numbercurrencyCode
property
valueChange
property
prefix$
property
Observable<string>suffix$
property
Observable<string>hasFractionPart
property
onChange
property
(val: any) => voidonTouch
property
() => void_inputValue
property
stringprecision
property
numberprecisionFactor
property
numberconstructor
method
(dataService: DataService, currencyService: CurrencyService) => CurrencyInputComponentngOnInit
method
() => ngOnChanges
method
(changes: SimpleChanges) => ngOnDestroy
method
() => registerOnChange
method
(fn: any) => registerOnTouched
method
(fn: any) => setDisabledState
method
(isDisabled: boolean) => onInput
method
(value: string) => onFocus
method
() => writeValue
method
(value: any) => void