Text format
Posted: Fri Feb 28, 2014 7:16 pm
First of all, great work with nuBuilder Pro! It's simply awesome!
I am creating a new application with it but I had a problem when choosing the format '10,000.00' for a text field. When I entered a numbre it was changin the value to 'NaN' instead of formatting it.
I replaced the line 220 of nuformat.js file from:
to:
Now it is working fine for this specific text format. However, I don't know whether this could affect some other text formats. If I notice something is going wrong with other text formats, I will report it here.
KInd regrads,
Fike
I am creating a new application with it but I had a problem when choosing the format '10,000.00' for a text field. When I entered a numbre it was changin the value to 'NaN' instead of formatting it.
I replaced the line 220 of nuformat.js file from:
Code: Select all
return Number(formattedNumber).toFixed(nuFormats[f].format);
Code: Select all
return formattedNumber
KInd regrads,
Fike