You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Matthias Weßendorf (JIRA)" <de...@myfaces.apache.org> on 2007/08/01 13:04:53 UTC

[jira] Commented: (TRINIDAD-2) Broken client decimal number validator

    [ https://issues.apache.org/jira/browse/TRINIDAD-2?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12516930 ] 

Matthias Weßendorf commented on TRINIDAD-2:
-------------------------------------------

luka confirmed it works now

> Broken client decimal number validator
> --------------------------------------
>
>                 Key: TRINIDAD-2
>                 URL: https://issues.apache.org/jira/browse/TRINIDAD-2
>             Project: MyFaces Trinidad
>          Issue Type: Bug
>         Environment: Windows XP
> Facelets 1.1.2
> Glassfish v2 b33
> 1.0.1-incubating-core-SNAPSHOT
>            Reporter: Luka Surija
>            Priority: Critical
>             Fix For: 1.0.2-core
>
>
> after switching from m1 to 1.0.1. snapshot, I realize that client validator for decimal numbers is broken.
> Settings in trinidad-config:
> <number-grouping-separator>.</number-grouping-separator>
> <decimal-separator>,</decimal-separator>
> In faces-config.xml:
> <locale-config>
>       <default-locale>hr_HR</default-locale>
>       <supported-locale>hr_HR</supported-locale>
>       <supported-locale>en</supported-locale>
> </locale-config>
> on code snippet:
> somevalue=7.54355
> Scenario 1:
> <tr:inputText value="#{somevalue}" >
>   <tr:convertNumber />
> </tr:inputText>
> <tr:commandButton />
> on value in inputText is shown: 7,54355, but clicking on button, alert window is open with message:
> Form validation failures:
> 7.54355 is not a number
> Scenario 2:
> <tr:inputText value="#{somevalue}" />
> <tr:commandButton />
> on value in inputText is shown: 7.54355 - not 7,54355
> Scenario 3:
> <tr:inputText value="#{somevalue}" >
>   <tr:convertNumber  pattern="0.00####"/>
> </tr:inputText>
> <tr:commandButton />
> on value in inputText is shown: 7,54355, and there is no client validation errors.
> On snapshot m1 it worked fine on "scenario 1". 

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