Skip to main content

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-app="ScopeChain">
<div ng-controller="parent">
<table style="border:2px solid #e37112">
<caption>This is Parent Controller</caption>
<tr>
<td>Name</td>
<td>{{Name}}</td>
</tr>
<tr>
<td>Company Address</td>
<td>{{companyAddress}}</td>
</tr>
<tr>
<td>
<table ng-controller="childController" style="border:2px solid #428bca">
<caption>Child Controller</caption>
<tr>
<td>Company head office</td>
<td>{{ compHead }}</td>
</tr>
<tr>
<td>Details of company</td>
<td>{{Name}}</td>
</tr>
<tr>
<td>Company Address</td>
<td>{{companyAddress}}</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</body>
</html>

Comments