Well I came in this morning and was beginning to start debugging and I
don't believe it but the stupid thing is working now?!?!?!?
Here's what my code ended up being:
private function generateObject():Object {
return { ap_trans: "" }
}
private function isObjectEmpty(obj:Object):Boolean {
return obj.ap_trans == "";
}
private function gotCheckData(evt:ResultEvent):void {
ac = new NewEntryArrayCollection (evt.result as Array );
ac.factoryFunction = generateObject;
ac.emptyTestFunction = isObjectEmpty;
ckData.dataProvider = ac;
//ckData.dataProvider = evt.result;
}
Thanks for your help Alex, I really don't know what caused it to start
working this time, but it did.
-David
--- In [email protected], "Alex Harui" <[EMAIL PROTECTED]> wrote:
>
> Debug into it. A breakpoint in makeRowsAndColumns and check the
> .collection to see what's in it.
>
>
>