5/10/2010 12:27:15 AM
Title:
How to disable Second Saturday of month in datefield
Hi,
How can i disable the date of Second Saturday of month in datefield
control.
that date should not be selectable to the user.
thanks in advance,
surendra.
5/10/2010 4:51:51 AM
you can use the disabledRanges property of DateField property to disable any day. Below I disabled 2nd Saturday of May (2010,May,8).
<mx:DateField disabledRanges="{[new Date(2010,4,8)]}"/>
5/10/2010 5:45:39 AM
Hi,
Thanks for the reply, u have done as static ,
How to do this dynamically for every month. As u said that is not the way i don't now the date of second Saturdays of every month.
thanks in advance,
surendra.