Skip to main content

Posts

Showing posts with the label Scope in AngularJS

Featured post

XM Cloud content sync from prod to uat or UAT to prod step by step

When working with Sitecore, it’s common to need content synchronization across environments. Today, I’ll walk you through the steps to sync content from Production to UAT/TEST and vice versa. Steps to Follow 1. Set Up Your Workspace Create a folder on your computer where you will manage the script files and exported data. Open the folder path in PowerShell to begin scripting. We need to run some scripts in PowerShell to update the folder with the basic requirements for syncing content. PS C:\Soft\ContentSync> dotnet new tool-manifest PS C:\Soft\ContentSync> dotnet nuget add source -n Sitecore https://nuget.sitecore.com/resources/v3/index.json PS C:\Soft\ContentSync> dotnet tool install Sitecore.CLI PS C:\Soft\ContentSync> dotnet sitecore cloud login If the above error occurs, you will need to run a different command to resolve the issue. PS C:\Soft\ContentSync> dotnet sitecore init now, Again run above command to open and authenticate with XM Cloud. It will be there a...

What is scope inheritance ?

 scope inheritance  Scope inheritance in AngularJS is in organize into hierarchy and it is use by views. In Hierarchy of scope $rootScope is a parent and $Scope is a child. $rootScope is a global variable it is a single in application and $Scope can be multiple in a application.variable created in $scope is use by the view based on that controller. See Example which can help you understand. Suppose we have two controller parent and child. <html> <head> <script src="lib/angular.js"></script> <script> var app = angular.module('ScopeChain', []); app.controller("parent", function ($scope) { $scope.Name = 'Shashi Keshar'; $scope.$parent.CompAddress = 'Delhi '; }); app.controller("childController", function ($scope, $controller) { $scope.compHead = 'Noida; }); </script> </head> <body ng-...

$scope and $rootScope in AngularJS

What is $scope and $rootScope ? $Scope : -  A $scope is an object which is use to bind view with the controller .it’s very usefull to communicate between view and controller. $ rootScope : - $rootScope is only one in an app and can be shared in the whole applications so that it can called as global variable and all except this all other are children of $rootScope. Let’s check in example which can help you to understand in better way. Example :- Suppose we two controller Ctl1 and Ctl2 . <!doctype html> <html> <body ng-app="myDemoApp"> <div ng-controller="Ctl1" > Hello {{ message }} ! <br /> Hello, You are {{ name }} ! (rootScope) </div> <br /> <div ng-controller="Ctl2" > Hello {{ message }} ! <br /> Hey {{ Name }} ! <br /> Hi, you are {{ name }} ! (rootScope) </div> <script src="lib/angula...