By default the day name of the date control in flex app is given as single letters as s m t w … for sunday monday …. but this looks pretty obvious, we can change this by using the DateBase class in the Flex.
There are properties like dayNamesShort, dayNamesLong in the datebase class we can use this to change the default values.
dayNamesShort will give out arraycollection of days in short form like :sun for sunday.
similarly for dayNamesLong will give out arraycollection of days in long form like :sunday for sunday. and soon.
Now the question is how to use those properties,its simple and small and given below.
comboBox1.dataProvider = new ArrayCollection(DateBase.dayNamesShort);
comboBox2.dataProvider = new ArrayCollection(DateBase.dayNamesLong);
<mx:ComboBox id=”comboBox1″ />
<mx:ComboBox id=”comboBox2″ />
the above two comboboxes contain the day lists in short and long.
Now its similar to change default monthname using the properties,monthNamesShort
monthNamesLong and u can try with this.


November 29, 2008 at 12:15 am |
Must See!!! A Promising Site
November 29, 2008 at 2:28 am |
Best wishes
November 29, 2008 at 2:00 pm |
I like your work
November 29, 2008 at 2:11 pm |
thank you
regards,
kumar.