This topic is locked

Numeric input with tausender point

3/8/2020 9:28:08 AM
PHPRunner General questions
K
kohle author

Hi,
I have a decimal database field.

I need following input possibilies :
100.000 (no, saves 100)

100.000,00 (no, saves empty)

100000,00 (ok)

100000 (ok)
The tausender point seperator dont work on the "edit" and "add" page.

On the view page its shown correct like 100.000

mbintex 3/8/2020

Don´t use the HTML5 input type "number", since that does not allow the German number notation in most browsers:
https://caniuse.com/#search=input%20number
See "known issues" there.