Input amount of money

Hi.
I'm looking for a way to make users input an amount of money.
I was thinking of using a RadzenMask, but that's not quite sufficient. Or I'm missing something (which is very well possible).
My criteria are
The required format should be ***.**
No comma's allowed, only dots.

When I use RadzenMask with Mask: *. and CharacterPattern: "[0-9]" users cannot enter a dot.
When I use RadzenMask with Mask: *. and CharacterPattern: "[0-9.]" users CAN enter a dot, but they can also enter more dots and type something like 12.3.2, which is not acceptable.

How would I go about doing this without resorting to a validator?
Thnx in advance for your time.
Henk

Maybe you should use Numeric with format:



Hi Vladimir,
Thanx for the quick response.
It is not quite what I'm looking for.
I want the user to ONLY be able to use this format: ***.**
Not allowed to enter comma's

I’m afraid that Numeric component is the best we can offer you for numeric input.