Apache flex 将数据加载到datagrid或combobox后会触发哪个事件?

Apache flex 将数据加载到datagrid或combobox后会触发哪个事件?,apache-flex,actionscript-3,Apache Flex,Actionscript 3,将数据加载到datagrid或combobox后会触发哪个事件?(假设dataprovider设置为datagrid)。请提供帮助。ComboBox和DataGrid的基类ComboBase和ListBase发出了一个“collectionChange”事件 var event:CollectionEvent = new CollectionEvent(CollectionEvent.COLLECTION_CHANGE); event.kind = CollectionEventKind.RES

将数据加载到datagrid或combobox后会触发哪个事件?(假设dataprovider设置为datagrid)。请提供帮助。

ComboBox和DataGrid的基类ComboBase和ListBase发出了一个“collectionChange”事件

var event:CollectionEvent = new CollectionEvent(CollectionEvent.COLLECTION_CHANGE);
event.kind = CollectionEventKind.RESET;
...
dispatchEvent(event);
ComboBox和DataGrid的基类ComboBase和ListBase发出一个“collectionChange”事件

var event:CollectionEvent = new CollectionEvent(CollectionEvent.COLLECTION_CHANGE);
event.kind = CollectionEventKind.RESET;
...
dispatchEvent(event);