Browse > Home » FLEX » Flex DataGrid 分页 带排序功能

Flex DataGrid 分页 带排序功能

七月 1st, 2009 Leave a comment

之前写过一篇关于DataGrid 分页的文章:Flex DataGrid 分页,有个同学提及到需要带排序功能,之前没加排序功能是因为考虑到数据量过大时,排序可能会很耗资源,在这里各位自己权重一下,因为这个分页功能是数据本地化之后的进行控制的。目前排序功能的实现只是针对数字的排序,如果对非数字排序的话,可能会出现乱序情况。大家可以对以下代码进行适当的修改

private var sort:Sort=new Sort();
private var descending:Boolean=false;
private function sortDataSourceItem(target:Object):void{
	descending=!descending;
sort.fields=[new SortField(target.toString(),true,descending,true)];
_dataProvider.sort=sort;
_dataProvider.refresh();
RefershData();
}

这里附带了一个demo,源码在这里Pagination_Sort.rar下载地址1 下载地址2

转载请注明: 出自 FlexHome
原文链接:http://flex.desizen.com/flex-datagrid-page-sort/

Related Posts

7 条评论 »
  1. superkof_zx (2009/08/21) Reply to this comment

    还是不能下载啊。麻烦楼主把完整的版本传一下吧。谢谢
    superkofzx@gmail.com

  2. joel (2009/08/24) Reply to this comment

    @superkof_zx:大米盘真的是不稳定啊,辛苦了warmC了,把那么多东西都给转移到了box.net,以后就都在box啦.老外靠谱,至少是和国内相比的 :smile:

  3. loocao (2009/08/29) Reply to this comment

    晕吧..我怎么能下载?

  4. joel (2009/08/29) Reply to this comment

    @loocao:是挺晕的,能下载还炫耀,啧啧..
    哈哈,不能在大米盘下的时候你没赶上,我们赶上了两次了,所以确认为服务不稳定,故转移之..

  5. loocao (2009/08/29) Reply to this comment

    嘿嘿…

  6. sarah (2010/01/21) Reply to this comment

    我也不能下载

  7. joel (2010/01/22) Reply to this comment

    @sarah:我就不明白了,为什么就不能把文字看全呢?每当有人说不能下载的时候,为何我们测试都是可以下载的呢?难道两个地址都试了么还不能下载么?

Leave a Reply

emoticons