const DemoApp = angular.module('DemoApp', ['dx']);
DemoApp.controller('DemoController', ($scope) => {
$scope.employeeInfo = {};
$scope.loadingVisible = false;
$scope.hideOnOutsideClick = false;
$scope.showIndicator = true;
$scope.showPane = true;
$scope.shading = true;
$scope.loadOptions = {
shadingColor: 'rgba(0,0,0,0.4)',
position: { of: '#employee' },
bindingOptions: {
visible: 'loadingVisible',
showIndicator: 'showIndicator',
showPane: 'showPane',
shading: 'shading',
hideOnOutsideClick: 'hideOnOutsideClick',
},
onShown() {
setTimeout(() => {
$scope.$apply(() => {
$scope.loadingVisible = false;
});
}, 3000);
},
onHidden() {
$scope.employeeInfo = employee;
},
};
$scope.showLoadPanel = function () {
$scope.employeeInfo = {};
$scope.loadingVisible = true;
};
});
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>DevExtreme Demo</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>window.jQuery || document.write(decodeURIComponent('%3Cscript src="js/jquery.min.js"%3E%3C/script%3E'))</script>
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/23.1.5/css/dx.light.css" />
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js"></script>
<script>window.angular || document.write(decodeURIComponent('%3Cscript src="js/angular.min.js"%3E%3C/script%3E'))</script>
<script src="https://cdn3.devexpress.com/jslib/23.1.5/js/dx.all.js"></script>
<script src="data.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css" />
<script src="index.js"></script>
</head>
<body class="dx-viewport">
<div class="demo-container" ng-app="DemoApp" ng-controller="DemoController">
<div id="container">
<h1>John Heart</h1>
<div
dx-button="{
text: 'Load Data',
onClick: showLoadPanel
}"
></div>
<div id="employee" ng-init="employeeInfo">
<p> Birth date: <b>{{employeeInfo.Birth_Date}}</b> </p>
<p class="address">
Address:<br />
<b>{{employeeInfo.City}}</b><br />
<span>{{employeeInfo.Zipcode}}</span>
<span>{{employeeInfo.Address}}</span>
</p>
<p>
Phone:
<b>{{employeeInfo.Mobile_Phone}}</b><br />
Email: <b>{{employeeInfo.Email}}</b>
</p>
</div>
<div class="loadpanel" dx-load-panel="loadOptions"></div>
<div class="options">
<div class="caption">Options</div>
<div class="option">
<div
dx-check-box="{
text: 'With indicator',
bindingOptions: {
value: 'showIndicator'
}
}"
>
</div>
</div>
<div class="option">
<div
dx-check-box="{
text: 'With overlay',
bindingOptions: {
value: 'shading'
}
}"
></div>
</div>
<div class="option">
<div
dx-check-box="{
text: 'With pane',
bindingOptions: {
value: 'showPane'
}
}"
></div>
</div>
<div class="option">
<div
dx-check-box="{
text: 'Hide on outside click',
bindingOptions: {
value: 'hideOnOutsideClick'
}
}"
></div>
</div>
</div>
</div>
</div>
</body>
</html>
h1 {
display: inline-block;
vertical-align: middle;
padding: 10px;
margin: 0;
}
#employee {
margin: 20px 0;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border-top: 1px solid lightgray;
border-bottom: 1px solid lightgray;
}
#employee > p {
padding: 10px 20px;
margin: 0;
}
.address {
height: 60px;
}
.options {
padding: 20px;
background-color: rgba(191, 191, 191, 0.15);
margin-top: 20px;
}
.caption {
font-size: 18px;
font-weight: 500;
}
.option {
margin-top: 10px;
}
const employee = {
Full_Name: 'John Heart',
Title: 'CEO',
Birth_Date: '03/16/1964',
Prefix: 'Mr.',
Address: '351 S Hill St.',
City: 'Los Angeles',
Zipcode: 90013,
Email: 'jheart@dx-email.com',
Skype: 'jheart_DX_skype',
Home_Phone: '(213) 555-9208',
Mobile_Phone: '(213) 555-9392',
};