blob: cdc0de337a3d1da25551b67ae030282ddfe461d9 [file] [log] [blame]
<s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
title="Display Mode View" xmlns:comps="comps.*">
<fx:Script>
<![CDATA[
import assets.DSConstants;
import spark.components.calendarClasses.DateSelectorDisplayMode;
[Bindable]
public var bindableDate:Date = new Date(2011,5,10,13,30);
[Bindable]
public var bindableDisplayMode:String = DateSelectorDisplayMode.DATE;
]]>
</fx:Script>
<s:VGroup>
<comps:InstrumentedDateSpinner id="ds" locale="null"/>
<comps:InstrumentedDateSpinner id="ds_binding" locale="null" selectedDate="{bindableDate}" displayMode="{bindableDisplayMode}"/>
</s:VGroup>
</s:View>