| <?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" currencySymbol="€"/> |
| <s:CurrencyValidator id="cvInline2" currencySymbol="¥"/> |
| |
| <s:CurrencyValidator id="cvBLocale1"/> |
| <s:CurrencyValidator id="cvBLocale2"/> |
| <s:CurrencyValidator id="cvInline_ChangeLocale" locale="zh-CN" currencySymbol="¥"/> |
| </fx:Declarations> |
| |
| <fx:Script> |
| <![CDATA[ |
| import flash.globalization.CurrencyFormatter; |
| |
| import mx.validators.ValidationResult; |
| |
| import spark.validators.CurrencyValidator; |
| public var cvScript:spark.validators.CurrencyValidator = new spark.validators.CurrencyValidator(); |
| |
| public var CVgslibError:flash.globalization.CurrencyFormatter=new flash.globalization.CurrencyFormatter('en-US'); |
| |
| public var cvError:String = "No_Error"; |
| public var gslibError:String="No_Error"; |
| |
| public function createCV():void |
| { |
| this.addStyleClient(cvScript); |
| } |
| |
| public function setCVcurrencySymbol(obj:*, value:String):String |
| { |
| try{ |
| obj.currencySymbol=value; |
| }catch(e:Error){ |
| cvError = e.toString(); |
| } |
| return cvError; |
| } |
| |
| public function setGScurrencySymbol(value:String):String |
| { |
| CVgslibError = new flash.globalization.CurrencyFormatter('zh_CN'); |
| try{ |
| CVgslibError.setCurrency("CYN",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.currencySymbol}"/> |
| |
| <s:Label id="cvLa" text="{cvBLocale1.currencySymbol}"/> |
| <s:Label id="cvLb" text="{cvBLocale2.currencySymbol}"/> |
| |
| </s:Application> |