blob: b2a8391326257a62d3f73b7e838245978e452753 [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.
-->
<mx:Application backgroundColor="0xFFFFFF" height="375" width="500" xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:local="*" >
<mx:Script>
<![CDATA[
import mx.formatters.DateFormatter;
public function SetSelectedDate():void{
dc.selectedDate=new Date(2006,11,5);
}
]]>
</mx:Script>
<mx:TextInput id="ti" />
<mx:Button id="btn" label="click" />
<mx:CurrencyFormatter id="cf" precision="3" rounding="up" decimalSeparatorTo="." thousandsSeparatorTo="," useThousandsSeparator="true" useNegativeSign="true" currencySymbol="$" />
<mx:DateChooser id="dc" creationComplete="SetSelectedDate();" />
<mx:DateFormatter id="df" formatString="EEEE, MMMM DD, YYYY at HH:NN:SS A" />
<mx:NumberFormatter id="nf" precision="3" rounding="up" decimalSeparatorTo="." thousandsSeparatorTo="," useThousandsSeparator="true" useNegativeSign="true" />
<mx:PhoneFormatter id="pf" formatString="###-####" areaCode="345" areaCodeFormat="(###) " validPatternChars="+()#-. " />
<local:CustomNf id="myCustomNf"/>
<mx:ZipCodeFormatter id="zf" formatString="#####-####" />
</mx:Application>