Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
datefieldフレックスにマスキングを適用する方法は? テキストを入力したときのようにdatefield変換する必要がありますMM/DD/YYYY
datefield
MM/DD/YYYY
イベントのformatStringプロパティを設定しますDateFieldchange
formatString
DateField
change
<mx:Script> <![CDATA[ import mx.events.*; private function dateChanged(event:Event):void { dateField1.formatString = "MM/DD/YYYY"; } ]]> </mx:Script> <mx:DateField id="dateField1" change="dateChanged(event)" />