
Announcements
Hello!
Please, I have a doubts related a field format specific number. I tryed to put the formula in the field but I have a error.
I need a put number format in this field
The field is a Text box.
Thanks for advise.
Renaut
Hello,
The "Format" property of a TextInput can only have two values: TextFormat.Number or TextFormat.Text
It is not possible to specify a special numeric format in he textinput.
This property is used to adjust display of value to the user's language and device: the decimal separator becomes a comma in French for example, on a smartphone, clicking in the control brings up a numeric keyboard rather than the full keyboard.
You can only format a number in a specific way with the Text() function, example: Text( 'My Value', "#.## $", "en-US") will display the value 'My Value' in USD , but this is not possible in an input control like textinput
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily.