DevExtreme v23.1 is now available.

Explore our newest features/capabilities and share your thoughts with us.

Your search did not match any results.
Scroll View

Scroll View

Documentation

The ScrollView is a UI component that enables a user to scroll its content. This demo shows how to display the scrollbar within a container and how to update the ScrollView content.

Backend API
Copy to CodePen
Apply
Reset
const DemoApp = angular.module('DemoApp', ['dx']); DemoApp.controller('DemoController', ($scope) => { let updateContentTimer; function updateContent(args, eventName) { const updateContentText = `\n \n Content has been updated on the ${eventName} event.`; if (updateContentTimer) { clearTimeout(updateContentTimer); } updateContentTimer = setTimeout(() => { $scope.content = (eventName === 'PullDown' ? `${updateContentText}\n${$scope.content}` : $scope.content + updateContentText); args.component.release(); }, 500); } function updateBottomContent(e) { updateContent(e, 'ReachBottom'); } $scope.updateTopContent = function (e) { updateContent(e, 'PullDown'); }; $scope.showScrollbarModes = [{ text: 'On Scroll', value: 'onScroll', }, { text: 'On Hover', value: 'onHover', }, { text: 'Always', value: 'always', }, { text: 'Never', value: 'never', }]; $scope.content = longText; $scope.showScrollbarMode = 'onScroll'; $scope.scrollByContentValue = true; $scope.scrollByThumbValue = true; $scope.reachBottomValue = true; $scope.pullDownValue = false; $scope.updateBottomContent = updateBottomContent; $scope.$watch('reachBottomValue', (value) => { if (value) { $scope.updateBottomContent = updateBottomContent; } else { $scope.updateBottomContent = null; } }); });
<!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="scrollview-demo"> <div id="scrollview" dx-scroll-view="{ scrollByContent: true, scrollByThumb: true, reachBottomText: 'Updating...', bindingOptions: { bounceEnabled: 'pullDownValue', showScrollbar: 'showScrollbarMode', scrollByContent: 'scrollByContentValue', scrollByThumb: 'scrollByThumbValue', onPullDown: 'updateTopContent', onReachBottom: 'updateBottomContent' } }" > <div class="content">{{content}}</div> </div> <div class="options"> <div class="caption">Options</div> <div class="option"> <span>Show scrollbar:</span> <div id="show-scrollbar-mode" dx-select-box="{ items: showScrollbarModes, valueExpr: 'value', displayExpr: 'text', bindingOptions: { value: 'showScrollbarMode' } }" ></div> </div> <div class="option"> <div id="use-reach-bottom" dx-check-box="{ text: 'Update content on the ReachBottom event', bindingOptions: { value: 'reachBottomValue' } }" ></div> </div> <div class="option"> <div id="use-pull-down-bottom" dx-check-box="{ text: 'Update content on the PullDown event', bindingOptions: { value: 'pullDownValue' } }" ></div> </div> <div class="option"> <div id="scroll-by-content" dx-check-box="{ text: 'Scroll by content', bindingOptions: { value: 'scrollByContentValue' } }" ></div> </div> <div class="option"> <div id="scroll-by-thumb" dx-check-box="{ text: 'Scroll by thumb', bindingOptions: { value: 'scrollByThumbValue' } }" ></div> </div> </div> </div> </div> </body> </html>
#scrollview-demo { min-height: 550px; } #scrollview { height: auto; position: absolute; top: 0; bottom: 300px; padding: 20px; } .content { white-space: pre-wrap; } .options { padding: 20px; background-color: rgba(191, 191, 191, 0.15); position: absolute; bottom: 0; left: 0; right: 0; } .caption { font-size: 18px; font-weight: 500; } .option { margin-top: 10px; } .option > span { position: relative; top: 2px; margin-right: 10px; } .option > .dx-selectbox { display: inline-block; vertical-align: middle; max-width: 340px; width: 100%; }
let longText = ''; for (let i = 0; i < 10; i += 1) { longText += 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\n\n'; }