Good day all.
We have noticed a difference between how the desktop app vs the mobile app handles values captured for a text-input component, specifically where the binding is set to a variable set up as an integer type.
We would like the users to not be able to enter a decimal value when entering values in this text-input component (even though this does get converted to a whole number once captured - it just creates confusion for the users on the front end).
On the desktop app you are restricted from entering a decimal point, but on the mobile app it does allow this character.
Is there a way that we can make the mobile handle this type of input the same way as the desktop app by setting an additional attribute on the text-input component or would we need to code additional validation logic (this needs to happen on key input not after entry please)?
Thank you.