<?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>flex datagrid例子</title>
	<atom:link href="http://www.4nothing.net/blog/2008/04/06/flex-datagrid-php-mysql-records/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.4nothing.net/blog/2008/04/06/flex-datagrid-php-mysql-records/</link>
	<description>技术服务生活</description>
	<pubDate>Tue, 06 Jan 2009 03:47:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>flex datagrid例子</title>
		<link>http://www.4nothing.net/blog/2008/04/06/flex-datagrid-php-mysql-records/comment-page-1/#comment-657</link>
		<dc:creator>spark.fandlr</dc:creator>
		<pubDate>Tue, 05 Aug 2008 11:39:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.4nothing.net/blog/?p=310#comment-657</guid>
		<description>@长空小白#575 
对的，原来的filterFunction有问题。你可以在headerRenderer组件中修改一下。


我把上面的功能做成了Air版的，使用sqlite数据库，大家可以下载下来，里面包括所有的代码。</description>
		<content:encoded><![CDATA[<p><a href='http://www.4nothing.net/blog/2008/04/06/flex-datagrid-php-mysql-records/#comment-575'>@长空小白</a><br />
对的，原来的filterFunction有问题。你可以在headerRenderer组件中修改一下。</p>
<p>我把上面的功能做成了Air版的，使用sqlite数据库，大家可以下载下来，里面包括所有的代码。</p>
]]></content:encoded>
	</item>
	<item>
		<title>flex datagrid例子</title>
		<link>http://www.4nothing.net/blog/2008/04/06/flex-datagrid-php-mysql-records/comment-page-1/#comment-580</link>
		<dc:creator>spark.fandlr</dc:creator>
		<pubDate>Wed, 02 Jul 2008 07:40:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.4nothing.net/blog/?p=310#comment-580</guid>
		<description>各位，由于我最近工作实在太忙，抽不出时间来回复大家都评论。等稍微有些时间了再来回复。望见谅。</description>
		<content:encoded><![CDATA[<p>各位，由于我最近工作实在太忙，抽不出时间来回复大家都评论。等稍微有些时间了再来回复。望见谅。</p>
]]></content:encoded>
	</item>
	<item>
		<title>flex datagrid例子</title>
		<link>http://www.4nothing.net/blog/2008/04/06/flex-datagrid-php-mysql-records/comment-page-1/#comment-579</link>
		<dc:creator>nick</dc:creator>
		<pubDate>Wed, 02 Jul 2008 07:30:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.4nothing.net/blog/?p=310#comment-579</guid>
		<description>兄弟，把数据库语句也导一个出来晒，还有就是index_info.php这个文件没有呢？</description>
		<content:encoded><![CDATA[<p>兄弟，把数据库语句也导一个出来晒，还有就是index_info.php这个文件没有呢？</p>
]]></content:encoded>
	</item>
	<item>
		<title>flex datagrid例子</title>
		<link>http://www.4nothing.net/blog/2008/04/06/flex-datagrid-php-mysql-records/comment-page-1/#comment-578</link>
		<dc:creator>风铃</dc:creator>
		<pubDate>Sun, 29 Jun 2008 02:09:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.4nothing.net/blog/?p=310#comment-578</guid>
		<description>真棒!如果用JSP该怎么弄啊/</description>
		<content:encoded><![CDATA[<p>真棒!如果用JSP该怎么弄啊/</p>
]]></content:encoded>
	</item>
	<item>
		<title>flex datagrid例子</title>
		<link>http://www.4nothing.net/blog/2008/04/06/flex-datagrid-php-mysql-records/comment-page-1/#comment-577</link>
		<dc:creator>mshoe.net</dc:creator>
		<pubDate>Sat, 28 Jun 2008 05:23:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.4nothing.net/blog/?p=310#comment-577</guid>
		<description>水平不错，至礼，学习中</description>
		<content:encoded><![CDATA[<p>水平不错，至礼，学习中</p>
]]></content:encoded>
	</item>
	<item>
		<title>flex datagrid例子</title>
		<link>http://www.4nothing.net/blog/2008/04/06/flex-datagrid-php-mysql-records/comment-page-1/#comment-575</link>
		<dc:creator>长空小白</dc:creator>
		<pubDate>Fri, 27 Jun 2008 06:20:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.4nothing.net/blog/?p=310#comment-575</guid>
		<description>大哥我想问一下,我也照你的例子写了一个,遇到了点问题,DataGrid的表头下拉列表,在过滤完后会恢复到第一行,我认为是用ArrayCollection类所产生的,我给你我的部分代码.您看一下:
	private function selChange(e:Event):void
			{

var str:String = titleCB.selectedItem.toString();
var i:Number = titleCB.selectedIndex;
if (  i == 0 ) str= "";
   compStr = str;
var dataWindow:DataGrid = DataGrid(this.parent.parent);
var obj:ArrayCollection = ArrayCollection(dataWindow.dataProvider);				if ( obj.length == undefined ) return;			obj.filterFunction = filterFun;
        	obj.refresh();

			}</description>
		<content:encoded><![CDATA[<p>大哥我想问一下,我也照你的例子写了一个,遇到了点问题,DataGrid的表头下拉列表,在过滤完后会恢复到第一行,我认为是用ArrayCollection类所产生的,我给你我的部分代码.您看一下:<br />
	private function selChange(e:Event):void<br />
			{</p>
<p>var str:String = titleCB.selectedItem.toString();<br />
var i:Number = titleCB.selectedIndex;<br />
if (  i == 0 ) str= &#8220;&#8221;;<br />
   compStr = str;<br />
var dataWindow:DataGrid = DataGrid(this.parent.parent);<br />
var obj:ArrayCollection = ArrayCollection(dataWindow.dataProvider);				if ( obj.length == undefined ) return;			obj.filterFunction = filterFun;<br />
        	obj.refresh();</p>
<p>			}</p>
]]></content:encoded>
	</item>
</channel>
</rss>
