AngularJS: Understanding RootScope ($rootScope)

  Рет қаралды 61,018

Tech CBT

Tech CBT

Күн бұрын

Пікірлер: 60
@rightpoint8881
@rightpoint8881 6 жыл бұрын
Great job with these tutorials. After trying almost a dozen videos on AngularJS, this is the series that finally made it "click" for me. Some people have complained that you repeat yourself too much at times, but I think that's needed when you are addressing an audience completely new to the topic.
@JeremiahKellogg
@JeremiahKellogg 6 жыл бұрын
This helped me solve an issue I've been trying to fix for weeks. I understand rootScope so much better now. Thanks!
@bhaskarchowdary5246
@bhaskarchowdary5246 7 жыл бұрын
I think none of techie explains like you Hats-off Tech CBT ......☻
@Techcbt-online
@Techcbt-online 7 жыл бұрын
Thanks Bhaskar.
@bhaskarchowdary5246
@bhaskarchowdary5246 7 жыл бұрын
Welcome sir
@tiagoavila7818
@tiagoavila7818 5 жыл бұрын
You have a great knowledge about AngularJS. Thanks for sharing with us!
@rudyNok
@rudyNok 5 жыл бұрын
You are doing an excelent job in explaining things into depth.
@satyanarayanap4451
@satyanarayanap4451 4 жыл бұрын
sir ur teaching sooo good
@satyanarayanap4451
@satyanarayanap4451 4 жыл бұрын
sir can provide datascience course
@maheshd3506
@maheshd3506 4 жыл бұрын
Good explanation with easy examples , thanks bro
@roychan2190
@roychan2190 3 жыл бұрын
you deserve a medal
@gs-rc3eq
@gs-rc3eq 5 жыл бұрын
thank you, Sir. Have you got a chance to start teaching any latest stable angular version ? if possible please start any Latest Angular Tutorial please................
@adityalsriivatsalan5663
@adityalsriivatsalan5663 4 жыл бұрын
Can you send the source code, because am not able to access using the link provided in description.
@gajanankulkarni5535
@gajanankulkarni5535 7 жыл бұрын
When do you use multiple angular modules
@dipanshusharma9851
@dipanshusharma9851 7 жыл бұрын
Sir, the amount of tax and net are not showing while I am running the code...please help!! @TechCBT
@amangrover6329
@amangrover6329 7 жыл бұрын
A controller is instantiated when angular reads ng-controller directive and it is then that the scope pertaining to that controller is glued with the controller object .Would this be the case with the rootScope object also? Would the module be instantiated when angular reads the ng-app directive only?
@NavneetThePrakash
@NavneetThePrakash 8 жыл бұрын
I can't thank you enough for your awesome tutorials, When will you teach us Angular 2?
@Techcbt-online
@Techcbt-online 8 жыл бұрын
Soon after Angular 1
@vinodgodti9301
@vinodgodti9301 7 жыл бұрын
Hello Sir , Thank you very much for your awasome tutorials but i have small doubt, as you explained in the one of the comment below my rootscope variable is not geting updated every where ,when in child controller rootscope variable is modified.Can you clarify my doubt sir? I am using the angular1.6
@qzrify
@qzrify 6 жыл бұрын
Hey TechCBT, great videos. What are you using to make those awesome diagrams?
@akshaysinha8113
@akshaysinha8113 7 жыл бұрын
Great stuff!!! Really liked it.
@Techcbt-online
@Techcbt-online 7 жыл бұрын
Thank you.
@priyankadodda5022
@priyankadodda5022 8 жыл бұрын
Nice Explanation Sir.Thank you soooo much.Please upload multiple ng-app with multiple rootScope in in single web page.
@Techcbt-online
@Techcbt-online 8 жыл бұрын
Sure..thanks
@ivanmarusic222
@ivanmarusic222 7 жыл бұрын
So, can we use "$rootScope" like some kind of constant or there is better way?
@Techcbt-online
@Techcbt-online 7 жыл бұрын
anything you specify in function parameters are just variables. It is just a general convention to use "$rootScope". For that matter, you can just use "r"
@ivanmarusic222
@ivanmarusic222 7 жыл бұрын
Thank you for explanation.
@longlongvs2012
@longlongvs2012 7 жыл бұрын
hi ~what is the different between $rootScope and the Window Object
@longlongvs2012
@longlongvs2012 7 жыл бұрын
i mean we can gained data from the customer Window Object
@Techcbt-online
@Techcbt-online 7 жыл бұрын
$rootScope is angular object. Window is JavaScript Object. $rootScope is inherited by child scopes. Not by Window. etc.
@shankarer00384
@shankarer00384 4 жыл бұрын
Super Explanation sir
@JohnWick-zc5li
@JohnWick-zc5li 8 жыл бұрын
Thanks for an excellent work Man
@Techcbt-online
@Techcbt-online 8 жыл бұрын
Thanks John
@fincyshimmy
@fincyshimmy 6 жыл бұрын
Great explanation.Thank you
@parimalchandwaskar1700
@parimalchandwaskar1700 7 жыл бұрын
@Tech CBT , I did not pass rootScope as a param in controller still I can access the value defined in run block at module. Is this a good representation and how? Thanks Hello {{name}}. Your tax amount is ${{taxAmount}} ----------------------- var app = angular.module('sample', []) .run( ['$rootScope', function($rootScope){ $rootScope.taxAmount = 40; }]); app.controller('emp', ['$scope', function($scope){ $scope.name = "John"; }]);
@sureshkumar-xd3ot
@sureshkumar-xd3ot 6 жыл бұрын
Hi sir, i seen your videos your explanation is very good with clarity can make some videos on react js please sir.
@jaemyunlee5348
@jaemyunlee5348 8 жыл бұрын
Thank you for sharing nice tutorials.
@Techcbt-online
@Techcbt-online 8 жыл бұрын
Thanks
@mikkydhiman9797
@mikkydhiman9797 8 жыл бұрын
Best Tutorial, Great work (y)
@Techcbt-online
@Techcbt-online 8 жыл бұрын
Thank you
@saikumarduggana2877
@saikumarduggana2877 6 жыл бұрын
$rootScope.$on calling twice why i didnt understanding.belw is the code $rootScope.$emit("saveAnnotations", { data: config.featureObj }); $rootScope.$on("saveAnnotations", function (e, data) { } can anybody help me for this.
@ashishranjan7812
@ashishranjan7812 6 жыл бұрын
Great explanation
@ThePomelo09
@ThePomelo09 5 жыл бұрын
the best tutorial!!!!
@ruchirai5775
@ruchirai5775 7 жыл бұрын
Hi , What is being explained in modifying root scope is contrary to how code is behaving.Please check. angular.module('myApp', []) .run(function($rootScope) { $rootScope.test = "myTest" }).controller('emp', function($scope) { $scope.test="myTest1" }).controller('empdetails', function($scope) { $scope.test="myTest2" }); {{test}} {{test}} In this If I change shared rootscope it only change in that div not anywhere else.
@swatidubey181
@swatidubey181 7 жыл бұрын
its very clear .Thanks
@Techcbt-online
@Techcbt-online 7 жыл бұрын
Thanks
@emmanoelpatavary1969
@emmanoelpatavary1969 8 жыл бұрын
Excellent, Thank You!
@Techcbt-online
@Techcbt-online 8 жыл бұрын
Thanks Emmanoel
@shefaliag
@shefaliag 8 жыл бұрын
Great work
@Techcbt-online
@Techcbt-online 8 жыл бұрын
Thank you..
@gs-rc3eq
@gs-rc3eq 5 жыл бұрын
Thanks a ton !!!!!!!
@sammysachet
@sammysachet 8 жыл бұрын
Thanks a lot !
@Techcbt-online
@Techcbt-online 8 жыл бұрын
Thank you
@jayeshmali299
@jayeshmali299 6 жыл бұрын
perfect video
@mayurvijaykode
@mayurvijaykode 8 жыл бұрын
Excellent
@Techcbt-online
@Techcbt-online 8 жыл бұрын
Thank you
@surendrababuchalla
@surendrababuchalla 8 жыл бұрын
excellent
@theoryx1109
@theoryx1109 7 жыл бұрын
good
@rishabhtrivedi4201
@rishabhtrivedi4201 7 жыл бұрын
It's Nice but sorry to say that..... things are being told repeatedly ...so many times ..which makes videos quite long n bit boring ....
@Techcbt-online
@Techcbt-online 7 жыл бұрын
received similar comments earlier. Improved quite a bit recently. Thanks for the feedback though.
AngularJS: What are Controllers and how to use them
28:13
Tech CBT
Рет қаралды 123 М.
Арыстанның айқасы, Тәуіржанның шайқасы!
25:51
QosLike / ҚосЛайк / Косылайық
Рет қаралды 700 М.
СИНИЙ ИНЕЙ УЖЕ ВЫШЕЛ!❄️
01:01
DO$HIK
Рет қаралды 3,3 МЛН
Enceinte et en Bazard: Les Chroniques du Nettoyage ! 🚽✨
00:21
Two More French
Рет қаралды 42 МЛН
AngularJS: Understanding Scope Inheritance
29:41
Tech CBT
Рет қаралды 65 М.
Стыдные вопросы про Китай / вДудь
3:07:50
вДудь
Рет қаралды 2,4 МЛН
$rootScope,  $scope in Servicenow | Service Portal |Widget
14:52
Discuss To Learn
Рет қаралды 3,6 М.
How GIT works under the HOOD?
16:01
Tech With Nikola
Рет қаралды 209 М.