PDF Forms JS: Extract formatted number field as displayed into a string
Hello,
Everything is in the object.
I've developed a relatively complex pdf form with JS customization.
I would like to insert in a text field a string that would contain a formatted number field as it is displayed.
Example: the numerical value is 25.1 is displayed in the field as 25,10 USD***, (the formatting changes depending on user's choices in other fields, for example the same value might be displayed as 25,100 TND*** ...)
I wish to extract the string "25,10 USD***" not the 25.1.
I tried using the formattedValue/editValue/rawValue properties but none of those worked.
Is it possible to do what I want? If so, how can I do it?
Thanks