private function editForm():void {
var event:DepManagementEvent = new DepManagementEvent("Edit Page",true);
for each(var item:Object in parentDocument.deleteDataGrid.selectedItems) {
event.department = item["col3"];
}
dispatchEvent(event);
}
I am able to access the parent datagrid and get the value of department... now when i send to the other page how can i store the value which i am passing from here... .
I am struck on this.