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

时间:2011-02-26 11:33:07

标签: flex actionscript-3

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

1 个答案:

答案 0 :(得分:3)

从ComboBase和ListBase(ComboBox和DataGrid的基类)调度“collectionChange”事件。

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