const DemoApp = angular.module('DemoApp', ['dx', 'ngSanitize']);
DemoApp.controller('DemoController', ($scope) => {
$scope.content = longText;
$scope.popupOptions = {
width: 550,
height: 350,
visible: true,
showTitle: false,
hideOnOutsideClick: false,
};
$scope.scrollViewOptions = {
width: '100%',
height: '100%',
};
});
<!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/22.2.6/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://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular-sanitize.min.js"></script>
<script>
(function () {
try {
window.angular.module('ngSanitize');
}
catch (e) {
return false;
}
return true;
})() || document.write(decodeURIComponent('%3Cscript src="js/angular-sanitize.min.js"%3E%3C\/script%3E'))
</script>
<script src="https://cdn3.devexpress.com/jslib/22.2.6/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 dx-popup="popupOptions">
<div dx-scroll-view="scrollViewOptions">
<img src="images/Popup-Scrolling-Image.jpg" class="center" />
<div id="textBlock" ng-bind-html="content"></div>
</div>
</div>
</div>
</body>
</html>
#textBlock {
padding-left: 20px;
padding-right: 20px;
line-height: 1.6em;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
padding-top: 20px;
width: 300px;
}
const longText = "The <b>ScrollView</b> allows users to scroll its content vertically. To enable horizontal and vertical scrolling, set the <b>direction</b> option to <i>\"both\"</i>. Horizontal scrolling is available only if the content is wider than the <b>ScrollView</b>. Otherwise, the content adapts to the widget's width.<br/><br/>The <b>ScrollView</b> uses native scrolling on most platforms, except desktops. To use it on all platforms, assign <b>true</b> to the <b>useNative</b> option. If you assign <b>false</b>, scrolling is simulated on all platforms.";