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...

Getting started with iOS programming using Swift (Part 1)

I have not been too fond of Objective-C, which was the primary reason for me to stay away from making iOS apps till now. So what changed? Well Apple has done something very interesting recently and that is the introduction of a new programming language i.e. Swift. Swift is awesome, it almost feels like Python, C++ and Objective-C had a baby with some of their good parts in them. So I have been getting to know Swift and it is an awesome language to program in. What I am going to share with this and a series of blog posts are solutions to some problems that i have encounter while i am trying to finish my first iOS app. The one hurdle that I have encountered while getting started on developing an iOS app is that a majority of the solutions for iOS specific problems provide solutions to them using Objective-C. Which is fair, because Swift has not been around for that long. Anyway let us get started with a few basics, A few basics I would highly recommend having a read of this book...