Flex在没有调度事件的情况下对数组集合应用排序/筛选



我有一个对象,从arraycollection扩展。这个对象必须访问和操作arraycollections源对象。发生这种情况时,数据的本地排序/筛选副本将与源数据不同步。为了正确排列,需要重新应用排序/过滤器。

通常要做到这一点,您将在arraycollection上调用refresh(),但这也会广播刷新事件。我想要的是在不调度事件的情况下更新排序/过滤器。

查看了ArrayCollection类,我可以看到它是从ListCollectionView扩展的。刷新功能

public function refresh():Boolean
{
    return internalRefresh(true);
}

在ListCollectionView中它调用这个函数

private function internalRefresh(dispatch:Boolean):Boolean
{
    if (sort || filterFunction != null)
    {
        try
        {
            populateLocalIndex();
        }
        catch(pending:ItemPendingError)
        {
            pending.addResponder(new ItemResponder(
                function(data:Object, token:Object = null):void
                {
                    internalRefresh(dispatch);
                },
                function(info:Object, token:Object = null):void
                {
                    //no-op
                }));
            return false;
        }
        if (filterFunction != null)
        {
            var tmp:Array = [];
            var len:int = localIndex.length;
            for (var i:int = 0; i < len; i++)
            {
                var item:Object = localIndex[i];
                if (filterFunction(item))
                {
                    tmp.push(item);
                }
            }
            localIndex = tmp;
        }
        if (sort)
        {
            sort.sort(localIndex);
            dispatch = true;
        }
    }
    else if (localIndex)
    {
        localIndex = null;
    }
    revision++;
    pendingUpdates = null;
    if (dispatch)
    {
        var refreshEvent:CollectionEvent =
            new CollectionEvent(CollectionEvent.COLLECTION_CHANGE);
        refreshEvent.kind = CollectionEventKind.REFRESH;
        dispatchEvent(refreshEvent);
    }
    return true;
}

令人恼火的是,该函数是私有的,因此对扩展ListCollectionView的类不可用。另外,internalRefresh函数中的很多内容也是私有的。

有没有人知道一种方法来调用internalRefresh从类扩展ArrayCollection?或者在调用refresh时阻止发送刷新事件的方法?

我的(read:hack)解决方案:

addEventListener(CollectionEventKind.REFRESH, handlerHack, true);

true在其他人对事件进行操作之前添加这个侦听器onCapture。

在调用collection.refresh()来更新排序/筛选之前,将布尔标志设置为true。

discardRefreshEvent = true;
myCol.refresh();

private function handlerHack(evt:CollectionEvent):void
{
    if (discardRefreshEvent)
        {
            evt.stopImmediatePropagation();
            discardRefreshEvent = false;
        }
}

免责声明:我以前没有做过这个确切的使用(已经实现了其他事件的类似功能),也只是猜测事件类型/名称。

也许你可以扩展ArrayCollection,听刷新事件,并在它被触发时调用stopImmediatePropagation() ?我想从这个开始…

祝你好运:

相关内容

  • 没有找到相关文章

最新更新