[flexcoders] Re: modifying the datefield object...

2005-09-09 Thread Greg Morphis
I got it.. I modified my function to the below and here it is for anyone to use if you need. function getNextSaturday(date) { // define variables var cMonth; var cYear; var cDay; var dayNum;

Re: [flexcoders] Re: modifying the datefield object...

2005-09-08 Thread Greg Morphis
at > > value later when creating your new date: > > > > daDate.selectedDate = new Date(cYear,cMonth-1,cDay); > > > > Cheers, > > > > Philippe > > > > -Original Message- > > From: flexcoders@yahoogroups.com on behalf of Greg Morph

Re: [flexcoders] Re: modifying the datefield object...

2005-09-08 Thread Greg Morphis
Year,cMonth-1,cDay); > > Cheers, > > Philippe > > -Original Message- > From: flexcoders@yahoogroups.com on behalf of Greg Morphis > Sent: Thu 8/09/2005 21:12 > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Re: modifying the datefield object... > > Well

RE: [flexcoders] Re: modifying the datefield object...

2005-09-08 Thread Philippe Maegerman
21:12 To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: modifying the datefield object... Well, I've gotten this far... function displayDate(date) { var cMonth; var cYear; var cDay; var dayNum; var tem

[flexcoders] Re: modifying the datefield object...

2005-09-08 Thread Greg Morphis
Well, I've gotten this far... function displayDate(date) { var cMonth; var cYear; var cDay; var dayNum; var tempDate; cMonth = (date.getMonth()) + 1; cYear = date.getFullYear();

[flexcoders] Re: modifying the datefield object...

2005-09-08 Thread Greg Morphis
I've found that I can use this to get the date change="displayDate(event.target.selectedDate)" On 9/8/05, Greg Morphis <[EMAIL PROTECTED]> wrote: > Is it possible to capture/modify the value that shows in the textbox > of the datefield object? > I've tried .value, .text and looked at the