Copy link to clipboard
Copied
How to display number 3000000 ? currently it is coming 3.0E6
Copy link to clipboard
Copied
Is this the result of a calculation? If so, how is it being calculated?
Did you set the field's Format to something else than "None"? If so, what?
Copy link to clipboard
Copied
We just pich the value from xml through xpath. we notice left and right side both field xpath are same but when value is is coming 3000000 then it is not proper display.
Thanks
Copy link to clipboard
Copied
So you're importing the value from an XML file?
And you didn't answer my second question...
Copy link to clipboard
Copied
Is this question about Acrobat JavaScript? LiveCycle Designer JavaScript? Browser JavaScript? Or something else?
Copy link to clipboard
Copied
Force the value to the String type. In the custom format script
event.value = String(event.value);
Copy link to clipboard
Copied
thank you so much for your comment.
we change our xpath coding and it is working fine now.
Thanks