<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>AIR Examples &#187; FileSystemDataGrid</title>
	<atom:link href="http://airexamples.com/tag/filesystemdatagrid/feed/" rel="self" type="application/rss+xml" />
	<link>http://airexamples.com</link>
	<description>A bunch of Adobe AIR examples*</description>
	<lastBuildDate>Tue, 16 Mar 2010 07:50:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Filtering files based on extension type in the FileSystemDataGrid control in Adobe AIR using Flex</title>
		<link>http://airexamples.com/2008/12/31/filtering-files-based-on-extension-type-in-the-filesystemdatagrid-control-in-adobe-air-using-flex/</link>
		<comments>http://airexamples.com/2008/12/31/filtering-files-based-on-extension-type-in-the-filesystemdatagrid-control-in-adobe-air-using-flex/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 05:32:43 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[FileSystemDataGrid]]></category>
		<category><![CDATA[extensions]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=322</guid>
		<description><![CDATA[The following example shows how you can filter files based on file extensions in the Adobe AIR FileSystemDataGrid control by setting the extensions property. Full code after the jump. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2008/12/31/filtering-files-based-on-extension-type-in-the-filesystemdatagrid-control-in-adobe-air-using-flex/ --&#62; &#60;mx:WindowedApplication name=&#34;FileSystemDataGrid_extensions_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; verticalAlign=&#34;middle&#34; backgroundColor=&#34;white&#34;&#62; &#160; &#60;mx:Script&#62; &#60;![CDATA[ private function init():void { arr = [dataGrid.nameColumn, dataGrid.typeColumn, dataGrid.sizeColumn]; } ]]&#62; [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2008/12/31/filtering-files-based-on-extension-type-in-the-filesystemdatagrid-control-in-adobe-air-using-flex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Toggling icons on the FileSystemDataGrid control in Adobe AIR</title>
		<link>http://airexamples.com/2008/12/27/toggling-icons-on-the-filesystemdatagrid-control-in-adobe-air/</link>
		<comments>http://airexamples.com/2008/12/27/toggling-icons-on-the-filesystemdatagrid-control-in-adobe-air/#comments</comments>
		<pubDate>Sun, 28 Dec 2008 02:28:17 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[FileSystemDataGrid]]></category>
		<category><![CDATA[showIcons]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=273</guid>
		<description><![CDATA[The following example shows how you can toggle icons in the Adobe AIR FileSystemDataGrid control by setting the showIcons property. Full code after the jump. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2008/12/27/toggling-icons-on-the-filesystemdatagrid-control-in-adobe-air/ --&#62; &#60;mx:WindowedApplication name=&#34;FileSystemDataGrid_showIcons_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; verticalAlign=&#34;middle&#34;&#62; &#160; &#60;mx:ApplicationControlBar dock=&#34;true&#34;&#62; &#60;mx:CheckBox id=&#34;checkBox&#34; label=&#34;showIcons:&#34; labelPlacement=&#34;left&#34; selected=&#34;true&#34; /&#62; &#60;/mx:ApplicationControlBar&#62; &#160; &#60;mx:FileSystemDataGrid id=&#34;dataGrid&#34; showIcons=&#34;{checkBox.selected}&#34; width=&#34;100%&#34; height=&#34;100%&#34; /&#62; &#160; &#60;/mx:WindowedApplication&#62; [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2008/12/27/toggling-icons-on-the-filesystemdatagrid-control-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Formatting the size column on the FileSystemDataGrid control in Adobe AIR</title>
		<link>http://airexamples.com/2008/12/26/formatting-the-size-column-on-the-filesystemdatagrid-control-in-adobe-air/</link>
		<comments>http://airexamples.com/2008/12/26/formatting-the-size-column-on-the-filesystemdatagrid-control-in-adobe-air/#comments</comments>
		<pubDate>Sat, 27 Dec 2008 01:55:33 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[FileSystemDataGrid]]></category>
		<category><![CDATA[FileSystemSizeDisplayMode]]></category>
		<category><![CDATA[sizeDisplayMode]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=266</guid>
		<description><![CDATA[The following example shows how you can format the size column to display bytes or kilobytes in an Adobe AIR FileSystemDataGrid control by setting the sizeDisplayMode property to one of the static constants in the FileSystemSizeDisplayMode class. Full code after the jump. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2008/12/26/formatting-the-size-column-on-the-filesystemdatagrid-control-in-adobe-air/ --&#62; &#60;mx:WindowedApplication name=&#34;FileSystemDataGrid_sizeDisplayMode_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; verticalAlign=&#34;middle&#34; backgroundColor=&#34;white&#34; showStatusBar=&#34;false&#34;&#62; [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2008/12/26/formatting-the-size-column-on-the-filesystemdatagrid-control-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Allowing multiple file selection on an FileSystemDataGrid control in Adobe AIR</title>
		<link>http://airexamples.com/2008/12/21/allowing-multiple-file-selection-on-an-filesystemdatagrid-control-in-adobe-air/</link>
		<comments>http://airexamples.com/2008/12/21/allowing-multiple-file-selection-on-an-filesystemdatagrid-control-in-adobe-air/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 07:59:34 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[FileSystemDataGrid]]></category>
		<category><![CDATA[allowMultipleSelection]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=168</guid>
		<description><![CDATA[The following example shows how you can enable multiple file selection in an Adobe AIR FileSystemDataGrid control by setting the Boolean allowMultipleSelection property. Full code after the jump. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2008/12/21/allowing-multiple-file-selection-on-an-filesystemdatagrid-control-in-adobe-air/ --&#62; &#60;mx:WindowedApplication name=&#34;FileSystemDataGrid_allowMultipleSelection_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; verticalAlign=&#34;middle&#34; backgroundColor=&#34;white&#34; showStatusBar=&#34;false&#34; width=&#34;1020&#34; height=&#34;720&#34;&#62; &#160; &#60;mx:ApplicationControlBar dock=&#34;true&#34;&#62; &#60;mx:Form styleName=&#34;plain&#34;&#62; &#60;mx:FormItem label=&#34;allowMultipleSelection:&#34;&#62; &#60;mx:CheckBox id=&#34;checkBox&#34; selected=&#34;true&#34; /&#62; &#60;/mx:FormItem&#62; [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2008/12/21/allowing-multiple-file-selection-on-an-filesystemdatagrid-control-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Toggling hidden files on the FileSystemDataGrid control in Adobe AIR</title>
		<link>http://airexamples.com/2008/12/20/toggling-hidden-files-on-the-filesystemdatagrid-control-in-adobe-air/</link>
		<comments>http://airexamples.com/2008/12/20/toggling-hidden-files-on-the-filesystemdatagrid-control-in-adobe-air/#comments</comments>
		<pubDate>Sat, 20 Dec 2008 16:27:49 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[FileSystemDataGrid]]></category>
		<category><![CDATA[showHidden]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=151</guid>
		<description><![CDATA[In a previous example, &#8220;Toggling hidden files on the FileSystemTree control in Adobe AIR&#8221; we saw how you can toggle hidden files on the Adobe AIR FileSystemTree control by setting the showHidden property. The following example shows how you can toggle hidden files on the Adobe AIR FileSystemDataGrid control by setting the showHidden property. Full [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2008/12/20/toggling-hidden-files-on-the-filesystemdatagrid-control-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Toggling file extensions on the FileSystemDataGrid control in Adobe AIR</title>
		<link>http://airexamples.com/2008/12/19/toggling-file-extensions-on-the-filesystemdatagrid-control-in-adobe-air/</link>
		<comments>http://airexamples.com/2008/12/19/toggling-file-extensions-on-the-filesystemdatagrid-control-in-adobe-air/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 15:16:13 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[FileSystemDataGrid]]></category>
		<category><![CDATA[showExtensions]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=148</guid>
		<description><![CDATA[In a previous example, &#8220;Toggling file extensions on the FileSystemTree control in Adobe AIR&#8221;, we saw how to toggle file name extensions on the Adobe AIR FileSystemTree control by setting the showExtensions property. The following example shows how you can toggle file name extensions on the Adobe AIR FileSystemDataGrid control by setting the showExtensions property. [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2008/12/19/toggling-file-extensions-on-the-filesystemdatagrid-control-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Navigating to the parent directory on a FileSystemDataGrid control in Adobe AIR</title>
		<link>http://airexamples.com/2008/12/19/navigating-to-the-parent-directory-on-a-filesystemdatagrid-control-in-adobe-air/</link>
		<comments>http://airexamples.com/2008/12/19/navigating-to-the-parent-directory-on-a-filesystemdatagrid-control-in-adobe-air/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 08:06:26 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[FileSystemDataGrid]]></category>
		<category><![CDATA[navigateUp()]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=143</guid>
		<description><![CDATA[The following example shows how you can navigate to the parent directory in an Adobe AIR FileSystemDataGrid control by calling the navigateUp() method. Full code after the jump. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- --&#62; &#60;mx:WindowedApplication name=&#34;FileSystemDataGrid_navigateUp_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; verticalAlign=&#34;middle&#34; backgroundColor=&#34;white&#34;&#62; &#160; &#60;mx:Script&#62; &#60;![CDATA[ import mx.events.FileEvent; &#160; private function btn_click(evt:MouseEvent):void { dataGrid.navigateUp(); } &#160; private function dataGrid_directoryChange(evt:FileEvent):void [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2008/12/19/navigating-to-the-parent-directory-on-a-filesystemdatagrid-control-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Toggling the Type column on the FileSystemDataGrid control in Adobe AIR</title>
		<link>http://airexamples.com/2008/12/18/toggling-the-type-column-on-the-filesystemdatagrid-control-in-adobe-air/</link>
		<comments>http://airexamples.com/2008/12/18/toggling-the-type-column-on-the-filesystemdatagrid-control-in-adobe-air/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 08:35:54 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[FileSystemDataGrid]]></category>
		<category><![CDATA[typeColumn]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=145</guid>
		<description><![CDATA[The following code shows how you can toggle the visibility of the Type column in the Adobe AIR FileSystemDataGrid control by setting the typeColumn object&#8217;s visible property. Full code after the jump. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2008/12/18/toggling-the-type-column-on-the-filesystemdatagrid-control-in-adobe-air/ --&#62; &#60;mx:WindowedApplication name=&#34;FileSystemDataGrid_typeColumn_visible_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; verticalAlign=&#34;middle&#34; backgroundColor=&#34;white&#34;&#62; &#160; &#60;mx:Script&#62; &#60;![CDATA[ import mx.events.FileEvent; &#160; private function checkBox_click(evt:Event):void { dataGrid.typeColumn.visible [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2008/12/18/toggling-the-type-column-on-the-filesystemdatagrid-control-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Toggling headers on the FileSystemDataGrid control in Adobe AIR</title>
		<link>http://airexamples.com/2008/12/17/toggling-headers-on-the-filesystemdatagrid-control-in-adobe-air/</link>
		<comments>http://airexamples.com/2008/12/17/toggling-headers-on-the-filesystemdatagrid-control-in-adobe-air/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 05:47:35 +0000</pubDate>
		<dc:creator>Peter deHaan</dc:creator>
				<category><![CDATA[FileSystemDataGrid]]></category>
		<category><![CDATA[showHeaders]]></category>

		<guid isPermaLink="false">http://airexamples.com/?p=124</guid>
		<description><![CDATA[The following example shows how you can toggle the headers on the Adobe AIR FileSystemDataGrid control by setting the Boolean showHeaders property. Full code after the jump. &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;!-- http://airexamples.com/2008/12/17/toggling-headers-on-the-filesystemdatagrid-control-in-adobe-air/ --&#62; &#60;mx:WindowedApplication name=&#34;FileSystemDataGrid_showHeaders_test&#34; xmlns:mx=&#34;http://www.adobe.com/2006/mxml&#34; layout=&#34;vertical&#34; verticalAlign=&#34;middle&#34; backgroundColor=&#34;white&#34;&#62; &#160; &#60;mx:ApplicationControlBar dock=&#34;true&#34;&#62; &#60;mx:Form styleName=&#34;plain&#34;&#62; &#60;mx:FormItem label=&#34;showHeaders:&#34;&#62; &#60;mx:CheckBox id=&#34;checkBox&#34; selected=&#34;true&#34; /&#62; &#60;/mx:FormItem&#62; &#60;/mx:Form&#62; &#60;/mx:ApplicationControlBar&#62; &#160; &#60;mx:FileSystemDataGrid [...]]]></description>
		<wfw:commentRss>http://airexamples.com/2008/12/17/toggling-headers-on-the-filesystemdatagrid-control-in-adobe-air/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
