I'm using angular to build HTML controls that interact with a legacy Flex application. All callbacks from the Flex app must be attached to the DOM window.
For example (in AS3)
ExternalInterface.call("save", data);
Will call
window.save = function(data){
// want to update a service
// or dispatch an event here...
}
From within the JS resize function I'd like to dispatch an event that a controller can hear. It seems that creating a service is the way to go. Can you update a service from outside of Angular? Can a controller listen for events from a service? In one experiment (click for fiddle) I did it seems like I can access a service but updating the service's data doesn't get reflected in the view (in the example an <option> should be added to the <select>).
thanks!
var injector = angular.injector(['ng', 'MyApp']);. Doing this will give you a completely new context and a duplicatemyService. That means you'll end up with two instances of the service and model and will be adding data to the wrong place. You should instead target an element within the app usingangular.element('#ng-app').injector(['ng', 'MyApp']). At this point you can then use $apply to wrap model changes. – Thanh Nguyen Mar 1 at 18:37