NFormat
Free and opensource extension
Format numbers based on default system language and country.
Value is double ( max 15 digit numbers ).
Decimal is int.
If your application is in different languages / countries you can use this extension to show numbers formatted according to the language and country of the user’s system.
Block / Example
Screenshots
(data entry with dot decimal, default DB)
In Portuguese Brazil |
In English USA |
|
|
Download
app.web.simplekod.nformat.aix (5.6 KB)
Opensource
https://github.com/eddiert/NFormatAIX
17 Likes
This post was flagged by the community and is temporarily hidden.
1 Like
Please respect the forum rules and post only in English.
formating number with java
here is :
num1 = 123456789;
output1 = num1.toLocaleString(‘en-US’);
document.all[0].innerText,output1
here is local arabic number if using arabic keyboard
code:
num1 = 123456789;
output1 = parseInt( num1 ).toLocaleString() ;
document.all[0].innerText,output1
2 Likes
Excellent extension, worked correctly in my project. Thanks!
1 Like
WITH THIS - ON LOST FOCUS ANY TEXT BOX WILL EFFECTED