Events Service
Using the events service in your custom code
Broadcasting an event
angular.module("umbraco").controller("MyController", function($scope, eventsService) {
$scope.updated = function() {
$scope.model.value++;
eventsService.emit("feature.updated", { value: $scope.model.value });
};
});Listening for an event
Listening for events globally
Unsubscribing from an event
Events in Umbraco
Umbraco application
Init
Security interceptor
Services
Clipboard service
Editor service
Editor State service
Localization service
Overlay service
TinyMCE service
Tours
Tree service
User service
Util service
Directives
Toggle directive
Controllers
Grid controller
Languages overview controller
Other
Last updated
Was this helpful?