# Call Planning Events
These events are in callplanning.js
file.
# Ti.App.fireEvent('finishedPickingContent')
Fired after picking content for the planning call is finished. Checks saving of call.
Example:
Ti.App.fireEvent('finishedPickingContent', {
fileIDs: [fileID0, fileID1, ...]
})
fileIDs
- IDs of the selected files while planning call.
# Ti.App.fireEvent('finishedPickingDate')
Fired after picking date for the planning call is finished. Checks saving of call
Example:
Ti.App.fireEvent('finishedPickingDate', {
selectedDate: 'myDate'
})
selectedDate
- Selected date information while planning call.