FLEX ArrayCollection删除过滤的数据问题办理

ArrayCollection添加过滤器后,挪用removeItemAt()是无法删除的,下面有个不错的办理要领,各人可以参考下

一、问题:

ArrayCollection添加过滤器后,部分数据不会被揭示,当我删除未揭示的数据时,挪用removeItemAt()是无法删除的。

二、原因:

复制代码 代码如下:


public function removeItemAt(index:int):Object
{
if (index < 0 || index >= length)
{
var message:String = resourceManager.getString(
"collections", "outOfBounds", [ index ]);
throw new RangeError(message);
}

var listIndex:int = index;
if (localIndex)
{
var oldItem:Object = localIndex[index];
listIndex = list.getItemIndex(oldItem);
}
return list.removeItemAt(listIndex);
}


因为var oldItem:Object = localIndex[index];中localIndex是一个未被过滤的数据。

三、办理

ArrayCollection中有list的属性:

复制代码 代码如下:


public function get list():IList
{
return _list;
}


_list就是原始数据。

所以假如要在添加了过滤器的ArrayCollection上删除过滤的数据,需要list的辅佐。实现代码如下:

复制代码 代码如下:


public function findEmployeeInSource(id:int):OrgEmployee {
var obj:OrgEmployee = null;
var list:IList = employees.list;
var len:int = list.length;
for (var index:int = 0; index < len; index++) {
obj = list.getItemAt(index) as OrgEmployee;
if (obj.id == id) {
return obj;
}
}
return null;
}

public function deleteEmployee(id:int):void {
var obj:OrgEmployee = findEmployeeInSource(id);
if (obj != null) {
var index:int = employees.list.getItemIndex(obj);
employees.list.removeItemAt(index);
}
}


可能一个函数:

复制代码 代码如下:


public function deleteEmployee(id:int):void {
var obj:OrgEmployee = null;
var list:IList = employees.list;
var len:int = list.length;
for (var index:int = 0; index < len; index++) {
obj = list.getItemAt(index) as OrgEmployee;
if (obj.id == id) {
list.removeItemAt(index);
return;
}
}
}

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wsdpjs.html