Author API Events
activityedit:item:edit
Fires when an Item reference or title is clicked in the Item list of the Activity Editor.
You would want to be notified about this event firing, because you might want to perform an action in your application when the Item edit UI appears, for example.
Examples
authorApp.on('activityedit:item:edit', function () {
console.log('This code executes when the Item reference or title is clicked.');
});
Related articles
- The
activityedit:item:create
event, which fires when the Create Item button is clicked in the Activity Editor. - The
activityedit:items:added
event, which fires when the Add Items button is clicked in the Item picker. - The
activityedit.saveable.changed
event, which fires when the save state changes for the current Activity.