Your search did not match any results.

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
<div id="scrollview-demo"> @(Html.DevExtreme().ScrollView() .ID("scrollview") .ScrollByContent(true) .ScrollByThumb(true) .OnReachBottom("scrollView_reachBottom") .ReachBottomText("Updating...") .ShowScrollbar(ShowScrollbarMode.OnScroll) .Content(@<text> @{ string content = ""; for (var i = 0; i <= 10; i++) { content += "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"; } } <div id="scrollview-content">@content <br /> </div> </text>) ) <div class="options"> <div class="caption">Options</div> <div class="option"> <span>Show scrollbar:</span> @(Html.DevExtreme().SelectBox() .ID("show-scrollbar-mode") .InputAttr("aria-label", "Show Scrollbar Mode") .Items(items => { items.Add().Text("On Scroll").Option("value", "onScroll"); items.Add().Text("On Hover").Option("value", "onHover"); items.Add().Text("Always").Option("value", "always"); items.Add().Text("Never").Option("value", "never"); }) .Value("onScroll") .ValueExpr("value") .DisplayExpr("text") .OnValueChanged("selectBox_valueChanged") ) </div> <div class="option"> @(Html.DevExtreme().CheckBox() .Value(true) .Text("Update content on the ReachBottom event") .OnValueChanged("reachBottom_checkBox_valueChanged") ) </div> <div class="option"> @(Html.DevExtreme().CheckBox() .Value(false) .Text("Update content on the PullDown event") .OnValueChanged("pullDownBottom_checkBox_valueChanged") ) </div> <div class="option"> @(Html.DevExtreme().CheckBox() .Value(true) .Text("Scroll by content") .OnValueChanged("scrollByContent_checkBox_valueChanged") ) </div> <div class="option"> @(Html.DevExtreme().CheckBox() .Value(true) .Text("Scroll by thumb") .OnValueChanged("scrollByThumb_checkBox_valueChanged") ) </div> </div> </div> <script> var updateContentTimer; function getScrollViewInstance() { return $("#scrollview").dxScrollView("instance"); } function updateScrollViewContent(eventName, insertBefore) { if(updateContentTimer) { clearTimeout(updateContentTimer); } updateContentTimer = setTimeout(function() { $("#scrollview-content")[insertBefore ? "prepend" : "append"]( "<br /><div>Content has been updated on the " + eventName + " event.</div><br />" ); getScrollViewInstance().release(); }, 500); } function scrollView_reachBottom(args) { updateScrollViewContent("ReachBottom", false); } function selectBox_valueChanged(data) { getScrollViewInstance().option("showScrollbar", data.value); } function reachBottom_checkBox_valueChanged(data) { getScrollViewInstance().option("onReachBottom", data.value ? updateScrollViewContent.bind(null, "ReachBottom", false) : null); } function pullDownBottom_checkBox_valueChanged(data) { getScrollViewInstance().option({ onPullDown: data.value ? updateScrollViewContent.bind(null, "PullDown", true) : null, bounceEnabled: data.value }); } function scrollByContent_checkBox_valueChanged(data) { getScrollViewInstance().option("scrollByContent", data.value); } function scrollByThumb_checkBox_valueChanged(data) { getScrollViewInstance().option("scrollByThumb", data.value); } </script>
using System; using System.Collections.Generic; using System.Linq; using System.Web.Mvc; namespace DevExtreme.MVC.Demos.Controllers { public class ScrollViewController : Controller { public ActionResult Overview() { return View(); } } }
#scrollview-demo { min-height: 550px; } #scrollview { height: auto; position: absolute; top: 0; bottom: 300px; padding: 20px; } #scrollview-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%; }