将数据加载到datagrid或combobox后会触发哪个事件? (假设dataprovider设置为datagrid)。请帮助。
答案 0 :(得分:3)
从ComboBase和ListBase(ComboBox和DataGrid的基类)调度“collectionChange”事件。
var event:CollectionEvent = new CollectionEvent(CollectionEvent.COLLECTION_CHANGE);
event.kind = CollectionEventKind.RESET;
...
dispatchEvent(event);