[flexcoders] clearing out mx:DateField

2008-12-09 Thread Stephen More
Within flex I have:
 mx:DateField id=effective /

Once a user selects a date, I can not clear it out using actionscript.

I have tried:
 effective.selectedDate = null;
 effective.selectedDate = undefined;
neither one has worked.

How can one clear out the mx:DateField ?

-Thanks


RE: [flexcoders] clearing out mx:DateField

2008-12-09 Thread Ryan Graham

 effective.selectedDate = null;

 

This should clear it.  Perhaps the actionscript function containing this
code isn't getting called.

 

HTH,

Ryan

 

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Stephen More
Sent: Tuesday, December 09, 2008 12:18 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] clearing out mx:DateField

 

Within flex I have:
mx:DateField id=effective /

Once a user selects a date, I can not clear it out using actionscript.

I have tried:
effective.selectedDate = null;
effective.selectedDate = undefined;
neither one has worked.

How can one clear out the mx:DateField ?

-Thanks

 



This message is private and confidential. If you have received it in error, 
please notify the sender and remove it from your system.

Re: [flexcoders] clearing out mx:DateField

2008-12-09 Thread Stephen More
On Tue, Dec 9, 2008 at 2:44 PM, Ryan Graham Ryan. wrote:
 effective.selectedDate = null;
 This should clear it.  Perhaps the actionscript function containing this
 code isn't getting called.

Sort of.

My flex also has a mx:List with a dataProvider.

I try to clear the List with:
 myitems.selectedItems = null;

This is actually clearing the List, but every line of code after this
not executing.

So I guess the real question is what is the right way to clear a mx:List ?


 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of Stephen More
 Sent: Tuesday, December 09, 2008 12:18 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] clearing out mx:DateField



 Within flex I have:
 mx:DateField id=effective /

 Once a user selects a date, I can not clear it out using actionscript.

 I have tried:
 effective.selectedDate = null;
 effective.selectedDate = undefined;
 neither one has worked.

 How can one clear out the mx:DateField ?

 -Thanks

 This message is private and confidential. If you have received it in error,
 please notify the sender and remove it from your system.
 


RE: [flexcoders] clearing out mx:DateField

2008-12-09 Thread Alex Harui
To clear selection from a list, set selectedIndex = -1

Setting selectedDate = null worked for me.

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stephen 
More
Sent: Tuesday, December 09, 2008 12:00 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] clearing out mx:DateField


On Tue, Dec 9, 2008 at 2:44 PM, Ryan Graham Ryan. wrote:
 effective.selectedDate = null;
 This should clear it. Perhaps the actionscript function containing this
 code isn't getting called.

Sort of.

My flex also has a mx:List with a dataProvider.

I try to clear the List with:
myitems.selectedItems = null;

This is actually clearing the List, but every line of code after this
not executing.

So I guess the real question is what is the right way to clear a mx:List ?

 From: flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.com 
 [mailto:flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.com] On
 Behalf Of Stephen More
 Sent: Tuesday, December 09, 2008 12:18 PM
 To: flexcoders@yahoogroups.commailto:flexcoders%40yahoogroups.com
 Subject: [flexcoders] clearing out mx:DateField



 Within flex I have:
 mx:DateField id=effective /

 Once a user selects a date, I can not clear it out using actionscript.

 I have tried:
 effective.selectedDate = null;
 effective.selectedDate = undefined;
 neither one has worked.

 How can one clear out the mx:DateField ?

 -Thanks

 This message is private and confidential. If you have received it in error,
 please notify the sender and remove it from your system.