blob: 8808a4a6ad8a9287997705fd151019fd963b3da1 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
<s:CurrencyValidator id="cv"/>
<s:CurrencyValidator id="cvBinding" locale="en-US"/>
<s:CurrencyValidator id="cvInline1" currencyISOCode="UDD"/>
<s:CurrencyValidator id="cvInline2" currencyISOCode="CYY"/>
<s:CurrencyValidator id="cvBLocale1"/>
<s:CurrencyValidator id="cvBLocale2"/>
<s:CurrencyValidator id="cvInline_ChangeLocale" locale="zh-CN" currencyISOCode="JOD"/>
<s:CurrencyValidator id="cvNoLocale" locale="undefined" />
</fx:Declarations>
<fx:Script>
<![CDATA[
import flash.globalization.CurrencyFormatter;
import spark.validators.CurrencyValidator;
import flash.globalization.LocaleID;
public var cvScript:spark.validators.CurrencyValidator= new spark.validators.CurrencyValidator();
public var CVgslibError:flash.globalization.CurrencyFormatter;
public var cvError:String = "No_Error";
public var gslibError:String = "No_Error";
public function createCV():void
{
this.addStyleClient(cvScript);
CVgslibError=new flash.globalization.CurrencyFormatter(appLocale);
}
public function setCVCurrencyISOCode(obj:*, value:String):String
{
try{
obj.currencyISOCode=value;
}catch(e:Error){
cvError = e.toString();
}
return cvError;
}
public function setGSCurrencyISOCode(obj:*, value:String):String
{
try{
obj.setCurrency(value,"");
}catch(e:Error){
gslibError = e.toString();
}
return gslibError;
}
public function get appLocale():String
{
return this.getStyle("locale");
}
]]>
</fx:Script>
<s:Label id="cvLabel" text="{cvBinding.currencyISOCode}"/>
<s:Label id="cvLa" text="{cvBLocale1.currencyISOCode}"/>
<s:Label id="cvLb" text="{cvBLocale2.currencyISOCode}"/>
</s:Application>