출처 : http://cafe.naver.com/flexcomponent/970
//한건과 두건이상을 모두 처리하는 방법
var acResult:ArrayCollection = event.result.data.row as ArrayCollection; //두건 이상일 경우만 ArrayCollection형성됨
if (acResult == null) { //한건일 경우 (한건을 받았을 경우는 NULL이 생성됨.)
acResult = new ArrayCollection(ArrayUtil.toArray(event.result.data.row));
}
acTagResultProc02 = acResult; //acTagResultProc02는 ArrayCollection으로 해당 DataGrid의 DataProvider와 Binding되어 있음.
//한건과 두건이상을 모두 처리하는 방법
var acResult:ArrayCollection = event.result.data.row as ArrayCollection; //두건 이상일 경우만 ArrayCollection형성됨
if (acResult == null) { //한건일 경우 (한건을 받았을 경우는 NULL이 생성됨.)
acResult = new ArrayCollection(ArrayUtil.toArray(event.result.data.row));
}
acTagResultProc02 = acResult; //acTagResultProc02는 ArrayCollection으로 해당 DataGrid의 DataProvider와 Binding되어 있음.