You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Danny Robinson (JIRA)" <de...@myfaces.apache.org> on 2007/08/06 16:54:00 UTC

[jira] Resolved: (TRINIDAD-141) JavaScript error in TrNumberFormat setMaximumIntegerDigits and setMaximumFractionDigits

     [ https://issues.apache.org/jira/browse/TRINIDAD-141?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Danny Robinson resolved TRINIDAD-141.
-------------------------------------

    Resolution: Fixed

Quick change as per issue description.

> JavaScript error in TrNumberFormat setMaximumIntegerDigits and setMaximumFractionDigits
> ---------------------------------------------------------------------------------------
>
>                 Key: TRINIDAD-141
>                 URL: https://issues.apache.org/jira/browse/TRINIDAD-141
>             Project: MyFaces Trinidad
>          Issue Type: Bug
>          Components: Components
>    Affects Versions: 1.0.2-core
>            Reporter: Danny Robinson
>             Fix For: 1.0.2-core
>
>
> The following line in the setMaximumIntegerDigits function causes an 'value; undefined error.
>     this._maxIntegerDigits = value < 0 ? 0 : number;
> Line should read
>     this._maxFractionDigits = number < 0 ? 0 : number;
> Same fix is required for setMaximumFractionDigits.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.