Skip to main content

Modifying scope variables outside it's AngularJS controller

So, work involves a fair bit of AngualrJS from time and again and for the most part, I am lucky enough to work with pure AngularJS code, however there are times that I have to work with non-AngularJS code that is supposed to interact with AngularJS code. Please have a look at the example below to get a clearer picture of what scenario I am talking about. Now AngularJS is awesome, but it was not always around i.e. it was released recently compared to some other Javascript libraries. So at times, integrating it with an application that already has well-written javascript, can be a bit challenging. So you may think, why angular is being added to something that already has well-written javascript code? To be honest, I do not know the exact answer to this, but if I were to guess, I suppose it would be to "leverage" some of the benefits that come from using angular.

Scenario

Say we have an input element in the container that we name TestCtrl, as follows

<div id="TestCtrl" ng-controller="TestCtrl>
    <input type="text" id="testInput" value="{{scopeTest}}" />
</div>

ScopeTest is bound to the scope i.e. scope.scopeTest, in the controller TestCtrl.

Problem

Now say if the value of the input element testInput changes outside the controller.  With something like this

function nonControllerFunction(){
   var valElem = document.getElementById("testInput");
   valElem.value = "value changed"
}
The scope property will still be pointing to the same old value, so how do we change the value such that, the scope has the updated value as well?

Solution

The solution is actually pretty straight forward, we make use of the awesome $apply method of the scope. So instead of the above approach we use the following function 

function changeValue(){
    var elem = document.getElementById("TestCtrl");
    var valElem = document.getElementById("testInput");
    var scope = angular.element(elem).scope();
    scope.$apply(function(){
       scope.scopeTest = 'Value changed';
    });
}

So as you can see we get the div that corresponds to the controller, we get its scope and then change the scopeTest property within the $apply function.

References

The answer to this SO question was indeed very helpful.
The official documentation for scope can be very informative as well.

Alternatively the entire source code for this post can be downloaded here


Comments

Popular posts from this blog

Upload to AWS S3 from Java API

In this post, you will see code samples for how to upload a file to AWS S3 bucket from a Java Spring Boot app. The code you will see here is from one of my open-source repositories on Github, called document-sharing. Problem Let’s say you are building a document sharing app where you allow your users to upload the file to a public cloud solution. Now, let’s say you are building the API for your app with Spring Boot and you are using AWS S3 as your public cloud solution. How would you do that? This blog post contains the code that can help you achieve that. Read more below,  Upload to AWS S3 bucket from Java Spring Boot app - My Day To-Do (mydaytodo.com)

Addressing app review rejections for auto-renewing subscription in-app purchase (iOS)

The ability to know what the weather is like while planning your day is a feature of  My Day To-Do  Pro and as of the last update it’s also a part of the  Lite version . Unlike the Pro version it’s an auto-renewing subscription based  in-app purchase (IAP)  in the Lite version. What means is that when a user purchases it, the user only pays for the subscription duration after which the user will be automatically charged for the next period. Adding an  auto-renewing  subscription based IAP proved to be somewhat challenging in terms of the app store review i.e. the app update was rejected by the App Review team thrice because of missing information about the IAP. Therefore in this post I will share my experiences and knowledge of adding auto-renewing IAP in hopes to save someone else the time that I had to spend on this problem. In-App purchase This year I started adding IAPs to My Day To-Do Lite which lead to learning about different types of IAP...

Serving HTML content in an iOS app that works in iOS 7 and later (using Swift)

As I have mentioned in an earlier post , I really enjoying coding in Swift. Now what am I doing with it? Well I am trying to build an HTML5 app that must work on devices with iOS 7. So in iOS8 apple has introduced a whole bunch of features that facilitate easy communication between web content and lets just call it back-end Swift code, but those features are not in iOS 7. So why do I want to build something that would work in an older OS? well I do not expect existing iOS users to upgrade to iOS 8 straight away and i also know a couple of people who would be very reluctant to upgrade their iPhones to iOS 8. Now in case you do not, you can have a read of the "Working with WebViews" section of this post , to know how to serve HTML content with WebViews. So when I started building my app, I wanted to know: How do I invoke some Swift code from my HTML content? Well the solution to this may feel a little bit "hacky" but it is a solution to achieve this.  The followi...