FLEX ArrayCollection 필터링된 데이터 제거 문제 해결

2159 단어
1. 문제:
Array Collection에서 필터를 추가하면 부서 데이터가 나타나지 않습니다. 보이지 않는 데이터를 삭제할 때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는 원시 데이터입니다.
따라서 필터가 추가된 Array Collection에서 필터된 데이터를 삭제하려면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;
}
}
}

좋은 웹페이지 즐겨찾기