Quantcast
Channel: Flex Monkey Patches » as3
Viewing all articles
Browse latest Browse all 10

Flex DateChooser – disable the individual year up/down arrows

$
0
0

The datachooser control doesn’t expose a way to disable the individual year up/down arrows, only the entire year Navigation (via yearNavigationEnabled).

But in looking at the internals of the dataChooser.as class you can get at the Buttons in an unsupported way.

mx_internal var upYearButton:Button;

mx_internal var downYearButton:Button;

These are the mx_internal scoped buttons for the up/down year.
You could technically extend the datechooser class and then create methods to enable/disable these buttons (if they exist).
Then you could enable/disable them using logic based on what you are setting for selectable ranges.

This is what I have done in the following example

Download a zipfile containing the source to this sample.

Browse the source of this example.

Or continue into the blog entry to see the source:

Here is the app code:

  1.  
  2. <?xml version="1.0" encoding="utf-8"?>
  3. <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
  4.         xmlns="*" creationComplete="disabledate();">
  5.  
  6.         <mx:Script>
  7.  
  8.         <![CDATA[
  9.                 import mx.events.DateChooserEvent;
  10.                 public function checkDateSelectionEvent(event:Event):void{
  11.                         var now:Date = new Date();
  12.                         var nowYr:int=now.fullYear;
  13.                         var displayedYr:int = DateField.displayedYear;
  14.                         if(displayedYr > nowYr){
  15.                                 DateField.enableDownYrButton(true);
  16.                         }
  17.                         else{
  18.                                 DateField.enableDownYrButton(false);
  19.                         }
  20.                 }
  21.  
  22.                 private function disabledate():void {
  23.             var now:Date = new Date();
  24.                         var today:Date = new Date(now.getFullYear(),
  25.                                                                           now.getMonth(),
  26.                                                                           now.getDate());
  27.  
  28.                         // Departure date can be today or later.
  29.                         DateField.selectableRange = { rangeStart: today };
  30.  
  31.                         DateField.enableDownYrButton(false);
  32.  
  33.             }
  34.                         ]]>
  35.         </mx:Script>
  36.         <mx:HBox>
  37.                 <myDateChooser id="DateField" click="checkDateSelectionEvent(event)"
  38.                         enabled="true" showToday="true" color="#0A0A09" todayColor="#93F5E8"
  39.                         visible="true" width="225" yearNavigationEnabled="true" >
  40.                 </myDateChooser>
  41.  
  42.         </mx:HBox>
  43. </mx:Application>
  44.  

Here is the code for the custom component:

  1.  
  2. <?xml version="1.0" encoding="utf-8"?>
  3. <mx:DateChooser xmlns:mx="http://www.adobe.com/2006/mxml">
  4.  
  5.         <mx:Script>
  6.                 <![CDATA[
  7.                         import mx.core.mx_internal;
  8.                         use namespace mx_internal;
  9.  
  10.  
  11.                         public function enableUpYrButton(b:Boolean):void{
  12.                                 super.mx_internal::upYearButton.enabled=b;
  13.                         }
  14.  
  15.                         public function enableDownYrButton(b:Boolean):void{
  16.                                 super.mx_internal::downYearButton.enabled=b;
  17.                         }
  18.                 ]]>
  19.         </mx:Script>
  20.  
  21. </mx:DateChooser>
  22.  

Viewing all articles
Browse latest Browse all 10

Trending Articles