actionscript-3 – 如何在Flex中对ArrayCollection进行排序

前端之家收集整理的这篇文章主要介绍了actionscript-3 – 如何在Flex中对ArrayCollection进行排序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想按字段名称将Arraycollection排序为升序.这是我的代码,我想知道它是否正确.你有什么建议吗?
public static function arrayCollectionSort(ar:ArrayCollection,fieldName:String,isNumeric:Boolean):void 
    {var dataSortField:SortField = new SortField();
        dataSortField.name = fieldName;
        dataSortField.numeric = isNumeric;
        var numericDataSort:Sort = new Sort();
        numericDataSort.fields = [dataSortField];
        arrCol.sort = numericDataSort;
        arrCol.refresh();}

解决方法

您拥有的代码是正确的,但类型除外. arrCol应该是ar.代码看起来几乎与博客 Flex Examples中的代码完全一样,这也是正确的.

只需更改是将arrCol更改为如下所示:

public static function arrayCollectionSort(ar:ArrayCollection,isNumeric:Boolean):void 
{
    var dataSortField:SortField = new SortField();
    dataSortField.name = fieldName;
    dataSortField.numeric = isNumeric;
    var numericDataSort:Sort = new Sort();
    numericDataSort.fields = [dataSortField];
    ar.sort = numericDataSort;
    ar.refresh();
}

不确定数字,但其他一切都是正确的.

原文链接:https://www.f2er.com/flex/174187.html

猜你在找的Flex相关文章