Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
5323 Widoki

Hello,

I have a float fields like this:

abc = fields.Float()

In the UI,  I want to set the float fields so that when the user is inputting the specific number, a thousand separator (,) should be added automatically in realtime to the number once it increments by 3 figures.....thousand, million, billion, etc... and when erased to below 4 figures the number goes back to normal.

Of course, when I click the save button, it will follow the thousands separator format that I set up in Translations -> Language -> English (US)


Please help!

Thank you!

Awatar
Odrzuć
Autor Najlepsza odpowiedź

Finally, I resolved my wish. Just create a widget with the function of auto populate commas or dots when the user enters values into the float field. The code look like this:

            var input = this.$el.html();

            var output = input.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ".")

And it works fine after click a button!

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
4
wrz 18
5383
1
sie 20
4750
2
lip 19
4266
1
lis 22
4291
2
sie 25
3567