`
sjkgxf7191
  • 浏览: 252275 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

ArrayCollection的过滤功能

    博客分类:
  • flex
阅读更多

添加过滤 条件函数:

 

modelLocator.ptoArrayCollection.filterFunction = filterProduct;
modelLocator.ptoArrayCollection.refresh();

private function filterProduct(item:Object):Boolean
{
	if (item.sprint.releases.product.productId == productCB.selectedItem.productId)
	       return true;
	else
		return false;
}

 

取消过滤

 

modelLocator.ptoArrayCollection.filterFunction = null;
modelLocator.ptoArrayCollection.refresh();
 
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics