Re: [flexcoders] Re: DateChooser Calendar pop up

2009-10-02 Thread Jeffry Houser
There are too things that crop to mind. First, if you just want the user to select the number of days, isn't that an integer in a TextInput? I'm assuming that is the wrong path, so... You might be describing allowMultipleSelection which can allow the user to select multiple days in the DateC

RE: [flexcoders] Re: DateChooser setting displayedMonth, displayedYear does nothing

2008-05-18 Thread Alex Harui
I didn't run the code, but by looking at it, the selectableRange is bound to a plain old object which doesn't support binding. You should have seen a warning in the console at runtime. Thus at init time, the selectableRange is bogus and the displayedMonth/Year probably get screwed up as well. ___

RE: [flexcoders] Re: Datechooser

2008-02-04 Thread Dealy, Brian
http://www.holaflex.com/?p=46 tell us that the two buttons are declared internally as mx:internal which prevents us from accessing them directly but the site (in spanish) gives this example of a subclass that implements the overridden updateDisplayList method to set those buttons invisible.

Re: [flexcoders] Re: Datechooser

2008-02-04 Thread Sherif Abdou
http://www.adobe.com/2006/mxml"; layout="vertical" xmlns:flexlib="flexlib.*"> - Original Message From: vivek <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Monday, February 4, 2008 9:25:22 PM Subject: [flexcoders] Re: Datechooser Sorry can you be more clear. Probably w

Re: [flexcoders] Re: DateChooser

2007-05-07 Thread Manish Jethani
On 5/7/07, kredding.geo <[EMAIL PROTECTED]> wrote: > I read the source code and am trying to understand it. . I'm sorry. Here's how I would extend the DateChooser component to add support for a "selectedDayStyleName" style. public class MyDateChooser extends DateChooser { override creationC

Re: [flexcoders] Re: DateChooser

2007-05-07 Thread Manish Jethani
On 5/7/07, kredding.geo <[EMAIL PROTECTED]> wrote: > How do I access the CalendarLayout object? You're looking at extending the DateChooser component. That means you're looking at reading and understanding the source code of the DateChooser component. Use the Source, Luke!

Re: [flexcoders] Re: DateChooser

2007-05-07 Thread Manish Jethani
On 5/7/07, kredding.geo <[EMAIL PROTECTED]> wrote: > Both of those seem like they only work for the background square that > gets highlighted when selected. I need the background to be blank, but > I need to actually modify the text font and color. Is there no way to > do this without using a .swf

Re: [flexcoders] Re: [DateChooser] Emphasize specific days

2006-10-12 Thread Tom Chiverton
On Thursday 12 October 2006 02:31, Andrew D. Goodfellow wrote: > "select" multiple dates, I want to "indicate" there is some data on certain > dates _if_ one of those dates were to be selected by the user. So use the select or change events to update either selectedRanges, or some other control.

Re: [flexcoders] Re: [DateChooser] Emphasize specific days

2006-10-11 Thread Andrew D. Goodfellow
Tom,I appreciate your response, thanks. However this does not answer the question posted. I obviously was not clear enough. I do not want to "select" multiple dates, I want to "indicate" there is some data on certain dates _if_ one of those dates were to be selected by the user. If you've alread

Re: [flexcoders] Re: [DateChooser] Emphasize specific days

2006-10-11 Thread Tom Chiverton
On Wednesday 11 October 2006 04:56, Andrew D. Goodfellow wrote: > I'm really interested in this type of thing as well. Searching the list I > see one other question about this with no response from Syed Mazhar Hasan > Qadri on August 6. Maybe people got tired of pointing people at the livedocs web

Re: [flexcoders] Re: [DateChooser] Emphasize specific days

2006-10-10 Thread Andrew D. Goodfellow
I'm really interested in this type of thing as well. Searching the list I see one other question about this with no response from Syed Mazhar Hasan Qadri on August 6.Has anyone done anything like this with the Flex 2 DateChooser? It seems like this would pretty a pretty common use-case for this