J
johan.pouget
Guest
Hi, I have a problem with my application. On one record, i put two events on two fields. In order replace the input number by a currency. Example : the user insert "30" on the field and it is converted automatically by "€ 30.00". This case run perfectly. But if I restart TomCat + DB's Rollbase, I lose my convertion. The symbol "€" is replaced by "?". This seems to come the save of the application. When I export my application, in the .xml, I see my fields with the bad symbol. onchange form.montant.value = this.value * form.prix__unitaire.value; rbf_formatCurrencyField(form.montant, '?', 2, ' '); /onchange Instead of onchange form.montant.value = this.value * form.prix__unitaire.value; rbf_formatCurrencyField(form.montant, '€', 2, ' '); /onchange . Whereas I typed the correct syntax with symbol "€" before the reboot. Could you fix this ? Thanks.
Continue reading...
Continue reading...