10
Views
1
Comments
[Simple Currency Input] Readonly Error
Question
currencyinput-jpg
Web icon
Forge asset by César Santos
First of all thank you for the widget, it's really useful.

I also found an error on your JavaScript regarding the 'readonly' property on function 'AddCurrencyField':
if(obj.getAttribute("readonly") != null)
        node.setAttribute(obj.getAttribute("readonly"));
It should be:
if(obj.getAttribute("readonly") != null)
        node.setAttribute("readonly", obj.getAttribute("readonly"));

By the way, the version 1.2.4 only corrects the 'empty thousand separator' right? On the version description it says 'Allows empty decimal separator'.
2025-10-27 16-39-03
César Santos
Hi Arrobe,
 
Yes, the version 1.2.4 only corrects the  'empty thousand separator'.
 
Thank you, for your feedback, I will fix it soon as possible.
Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.