I am using the input type tel to trigger the numeric keyboard on android and ios like described here. Now the min and max validations do not work anymore (I used input type number before). Do I have to write a custom directive for min and max validations? Has someone a simpler solution or already done that?
Same here. I have a money textbox so I want to pre-populate the textbox like for example “8.50”. I can’t use type number because then it bombs “Expected 8.50 to be a number”. So I must use type tel, but everytime someone wants to insert a decimal, they must first click on Sym to access the decimal point…