<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>Comments on: Flex 3 Custom DateChooser</title>
	<atom:link href="/2009/03/01/flex-3-custom-datechooser-2/feed/" rel="self" type="application/rss+xml" />
	<link>/2009/03/01/flex-3-custom-datechooser-2/</link>
	<description>on web development</description>
	<lastBuildDate>Fri, 26 Oct 2018 21:40:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.0.3</generator>
	<item>
		<title>By: Stoimen</title>
		<link>/2009/03/01/flex-3-custom-datechooser-2/comment-page-1/#comment-12707</link>
		<dc:creator><![CDATA[Stoimen]]></dc:creator>
		<pubDate>Fri, 26 Mar 2010 06:21:52 +0000</pubDate>
		<guid isPermaLink="false">/?p=256#comment-12707</guid>
		<description><![CDATA[@Klaus - thanks!]]></description>
		<content:encoded><![CDATA[<p>@Klaus &#8211; thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Klaus</title>
		<link>/2009/03/01/flex-3-custom-datechooser-2/comment-page-1/#comment-12706</link>
		<dc:creator><![CDATA[Klaus]]></dc:creator>
		<pubDate>Fri, 26 Mar 2010 03:56:12 +0000</pubDate>
		<guid isPermaLink="false">/?p=256#comment-12706</guid>
		<description><![CDATA[@Srinivas
to create a CustomDateField you must create a CustomDateChooser and set it in the dropDownFactory variable.
Hi i took the liberty to create a DateChooser component using this code i fixed some bugs it had regarding changing the months in the DateChooser while having the combobox opened. I also added the selectableRange capability and used a special combobox component to disable the unselectable months, you can find it here.
http://wmcai.blog.163.com/blog/static/4802420088945053961/

the component can be downloaded here i hope the creator of this blog to upload this version and give  Weimin Cai the honors for this great combobox

http://rapidshare.com/files/368231876/CustomDateChooser.rar.html]]></description>
		<content:encoded><![CDATA[<p>@Srinivas<br />
to create a CustomDateField you must create a CustomDateChooser and set it in the dropDownFactory variable.<br />
Hi i took the liberty to create a DateChooser component using this code i fixed some bugs it had regarding changing the months in the DateChooser while having the combobox opened. I also added the selectableRange capability and used a special combobox component to disable the unselectable months, you can find it here.<br />
<a href="http://wmcai.blog.163.com/blog/static/4802420088945053961/" rel="nofollow">http://wmcai.blog.163.com/blog/static/4802420088945053961/</a></p>
<p>the component can be downloaded here i hope the creator of this blog to upload this version and give  Weimin Cai the honors for this great combobox</p>
<p><a href="http://rapidshare.com/files/368231876/CustomDateChooser.rar.html" rel="nofollow">http://rapidshare.com/files/368231876/CustomDateChooser.rar.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Klaus</title>
		<link>/2009/03/01/flex-3-custom-datechooser-2/comment-page-1/#comment-12705</link>
		<dc:creator><![CDATA[Klaus]]></dc:creator>
		<pubDate>Fri, 26 Mar 2010 03:45:45 +0000</pubDate>
		<guid isPermaLink="false">/?p=256#comment-12705</guid>
		<description><![CDATA[@Srinivas
to create a CustomDateField you must create a CustomDateChooser and set it in the dropDownFactory variable.
Hi i took the liberty to create a DateChooser component using this code i fixed some bugs it had regarding changing the months in the DateChooser while having the combobox opened. I also added the selectableRange capability and used a special combobox component to disable the unselectable months, you can find it here.
http://wmcai.blog.163.com/blog/static/4802420088945053961/



--CustomDateChooser--


	
	
	
	= yearStart) {
				yearStart = (selectableRange.rangeStart as Date).fullYear;
				monthStart = (selectableRange.rangeStart as Date).month;
			}
			if (selectableRange
					&#038;&#038; selectableRange.rangeEnd
					&#038;&#038; (selectableRange.rangeEnd as Date).fullYear &#060;= yearEnd) {
				yearEnd = (selectableRange.rangeEnd as Date).fullYear;
				monthEnd = (selectableRange.rangeEnd as Date).month;
			}
			for (var year:int = yearStart; year &#060;= yearEnd; year++) {
				yearsArray.push(year);
			}
			addChild(months);
			addChild(years);

			update();

			// register some event listeners
			addEventListener(DateChooserEvent.SCROLL, onChangeMonth);
			months.addEventListener(Event.CHANGE, onChangeDropDownMonth);
			months.addEventListener(DropdownEvent.CLOSE, onDropDownClose);
			years.addEventListener(Event.CHANGE, onChangeDropDownYears);
			years.addEventListener(DropdownEvent.CLOSE, onDropDownClose);
		}

		public function update():void {
			months.selectedIndex = displayedMonth;
			years.selectedItem = displayedYear;
			if (displayedYear == yearEnd) {
				for (var a:int = monthEnd +1; a &#060;= 11; a++) {
					monthsArray[a].enabled = false;
				}
			} else if (displayedYear == yearStart) {
				for (var b:int = 0; b &#060; monthStart; b++) {
					monthsArray[b].enabled = false;
				}
			} else {
				for (var c:int = 0; c  monthEnd) {
					displayedMonth = monthEnd;
				}
			} else if (years.selectedItem == yearStart) {
				if (displayedMonth 
	
]]></description>
		<content:encoded><![CDATA[<p>@Srinivas<br />
to create a CustomDateField you must create a CustomDateChooser and set it in the dropDownFactory variable.<br />
Hi i took the liberty to create a DateChooser component using this code i fixed some bugs it had regarding changing the months in the DateChooser while having the combobox opened. I also added the selectableRange capability and used a special combobox component to disable the unselectable months, you can find it here.<br />
<a href="http://wmcai.blog.163.com/blog/static/4802420088945053961/" rel="nofollow">http://wmcai.blog.163.com/blog/static/4802420088945053961/</a></p>
<p>&#8211;CustomDateChooser&#8211;</p>
<p>	= yearStart) {<br />
				yearStart = (selectableRange.rangeStart as Date).fullYear;<br />
				monthStart = (selectableRange.rangeStart as Date).month;<br />
			}<br />
			if (selectableRange<br />
					&amp;&amp; selectableRange.rangeEnd<br />
					&amp;&amp; (selectableRange.rangeEnd as Date).fullYear &lt;= yearEnd) {<br />
				yearEnd = (selectableRange.rangeEnd as Date).fullYear;<br />
				monthEnd = (selectableRange.rangeEnd as Date).month;<br />
			}<br />
			for (var year:int = yearStart; year &lt;= yearEnd; year++) {<br />
				yearsArray.push(year);<br />
			}<br />
			addChild(months);<br />
			addChild(years);</p>
<p>			update();</p>
<p>			// register some event listeners<br />
			addEventListener(DateChooserEvent.SCROLL, onChangeMonth);<br />
			months.addEventListener(Event.CHANGE, onChangeDropDownMonth);<br />
			months.addEventListener(DropdownEvent.CLOSE, onDropDownClose);<br />
			years.addEventListener(Event.CHANGE, onChangeDropDownYears);<br />
			years.addEventListener(DropdownEvent.CLOSE, onDropDownClose);<br />
		}</p>
<p>		public function update():void {<br />
			months.selectedIndex = displayedMonth;<br />
			years.selectedItem = displayedYear;<br />
			if (displayedYear == yearEnd) {<br />
				for (var a:int = monthEnd +1; a &lt;= 11; a++) {<br />
					monthsArray[a].enabled = false;<br />
				}<br />
			} else if (displayedYear == yearStart) {<br />
				for (var b:int = 0; b &lt; monthStart; b++) {<br />
					monthsArray[b].enabled = false;<br />
				}<br />
			} else {<br />
				for (var c:int = 0; c  monthEnd) {<br />
					displayedMonth = monthEnd;<br />
				}<br />
			} else if (years.selectedItem == yearStart) {<br />
				if (displayedMonth </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stoimen</title>
		<link>/2009/03/01/flex-3-custom-datechooser-2/comment-page-1/#comment-12668</link>
		<dc:creator><![CDATA[Stoimen]]></dc:creator>
		<pubDate>Mon, 22 Mar 2010 08:36:35 +0000</pubDate>
		<guid isPermaLink="false">/?p=256#comment-12668</guid>
		<description><![CDATA[Hi,
I&#039;m pretty sure this is well described in the Flex 3 documentation, what I&#039;m not sure is the right syntax, so you can check what&#039;s present out in the web.

regards,
stoimen]]></description>
		<content:encoded><![CDATA[<p>Hi,<br />
I&#8217;m pretty sure this is well described in the Flex 3 documentation, what I&#8217;m not sure is the right syntax, so you can check what&#8217;s present out in the web.</p>
<p>regards,<br />
stoimen</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Require help</title>
		<link>/2009/03/01/flex-3-custom-datechooser-2/comment-page-1/#comment-12666</link>
		<dc:creator><![CDATA[Require help]]></dc:creator>
		<pubDate>Mon, 22 Mar 2010 05:49:28 +0000</pubDate>
		<guid isPermaLink="false">/?p=256#comment-12666</guid>
		<description><![CDATA[Hey can you tell me how would I highlight multiple dates in the  Flex3 datechooser. And access individual textfields of the  datechooser in  Flex3 ?? 

thanks]]></description>
		<content:encoded><![CDATA[<p>Hey can you tell me how would I highlight multiple dates in the  Flex3 datechooser. And access individual textfields of the  datechooser in  Flex3 ?? </p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Srinivas</title>
		<link>/2009/03/01/flex-3-custom-datechooser-2/comment-page-1/#comment-12504</link>
		<dc:creator><![CDATA[Srinivas]]></dc:creator>
		<pubDate>Thu, 04 Mar 2010 16:42:52 +0000</pubDate>
		<guid isPermaLink="false">/?p=256#comment-12504</guid>
		<description><![CDATA[Hi Very nice example.

How can we do the same for datefield. 

Means year and month dropdown in dateField?

thanks in advance.

Regards,
Srinivas]]></description>
		<content:encoded><![CDATA[<p>Hi Very nice example.</p>
<p>How can we do the same for datefield. </p>
<p>Means year and month dropdown in dateField?</p>
<p>thanks in advance.</p>
<p>Regards,<br />
Srinivas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stoimen</title>
		<link>/2009/03/01/flex-3-custom-datechooser-2/comment-page-1/#comment-6899</link>
		<dc:creator><![CDATA[Stoimen]]></dc:creator>
		<pubDate>Sun, 25 Oct 2009 11:56:12 +0000</pubDate>
		<guid isPermaLink="false">/?p=256#comment-6899</guid>
		<description><![CDATA[The source code can be found /2009/03/01/download-custom-flex-3-datechooser-2/.]]></description>
		<content:encoded><![CDATA[<p>The source code can be found <a href="/2009/03/01/download-custom-flex-3-datechooser-2/" rel="nofollow">/2009/03/01/download-custom-flex-3-datechooser-2/</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MelkoN</title>
		<link>/2009/03/01/flex-3-custom-datechooser-2/comment-page-1/#comment-6892</link>
		<dc:creator><![CDATA[MelkoN]]></dc:creator>
		<pubDate>Sun, 25 Oct 2009 07:04:28 +0000</pubDate>
		<guid isPermaLink="false">/?p=256#comment-6892</guid>
		<description><![CDATA[&quot;404 - Not Found

Sorry, no posts matched your criteria.&quot;

Source is not here!]]></description>
		<content:encoded><![CDATA[<p>&#8220;404 &#8211; Not Found</p>
<p>Sorry, no posts matched your criteria.&#8221;</p>
<p>Source is not here!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Philip Andrew</title>
		<link>/2009/03/01/flex-3-custom-datechooser-2/comment-page-1/#comment-5319</link>
		<dc:creator><![CDATA[Philip Andrew]]></dc:creator>
		<pubDate>Mon, 14 Sep 2009 10:42:00 +0000</pubDate>
		<guid isPermaLink="false">/?p=256#comment-5319</guid>
		<description><![CDATA[Wheres the source!!! ?]]></description>
		<content:encoded><![CDATA[<p>Wheres the source!!! ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Najumudheen</title>
		<link>/2009/03/01/flex-3-custom-datechooser-2/comment-page-1/#comment-4634</link>
		<dc:creator><![CDATA[Najumudheen]]></dc:creator>
		<pubDate>Tue, 18 Aug 2009 07:34:25 +0000</pubDate>
		<guid isPermaLink="false">/?p=256#comment-4634</guid>
		<description><![CDATA[Great component , i am searching for this for long time.

But i cannot download source. error shows page not found.

i need this component urgently.

Please help ...]]></description>
		<content:encoded><![CDATA[<p>Great component , i am searching for this for long time.</p>
<p>But i cannot download source. error shows page not found.</p>
<p>i need this component urgently.</p>
<p>Please help &#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
