-
Data Grid
- Overview
-
Data Binding
-
Paging and Scrolling
-
Editing
-
Grouping
-
Filtering and Sorting
- Focused Row
-
Row Drag & Drop
-
Selection
-
Columns
- State Persistence
-
Appearance
-
Templates
-
Data Summaries
-
Master-Detail
-
Export to PDF
-
Export to Excel
-
Adaptability
- Keyboard Navigation
-
Pivot Grid
- Overview
-
Data Binding
-
Field Chooser
-
Features
-
Export to Excel
-
Tree List
- Overview
-
Data Binding
- Sorting
- Paging
-
Editing
- Node Drag & Drop
- Focused Row
-
Selection
-
Filtering
-
Column Customization
- State Persistence
- Adaptability
- Keyboard Navigation
-
Scheduler
- Overview
-
Data Binding
-
Views
-
Features
- Virtual Scrolling
-
Grouping
-
Customization
- Adaptability
-
Html Editor
-
Chat
-
Diagram
- Overview
-
Data Binding
-
Featured Shapes
-
Custom Shapes
-
Document Capabilities
-
User Interaction
- UI Customization
- Adaptability
-
Charts
- Overview
-
Data Binding
-
Area Charts
-
Bar Charts
- Bullet Charts
-
Doughnut Charts
-
Financial Charts
-
Line Charts
-
Pie Charts
-
Point Charts
-
Polar and Radar Charts
-
Range Charts
-
Sparkline Charts
-
Tree Map
-
Funnel and Pyramid Charts
- Sankey Chart
-
Combinations
-
More Features
-
Export
-
Selection
-
Tooltips
-
Zooming
-
-
Gantt
- Overview
-
Data
-
UI Customization
- Strip Lines
- Export to PDF
- Sorting
-
Filtering
-
Reporting
-
Interaction
-
Report Types
-
Data binding
-
Real-life Reports
-
Layout Features
-
Report Controls
-
Web-specific Features
-
-
Rich Text Editor
- Overview
- Load/Save
- Document Protection
-
Templates
- Autocorrect
-
Customization
- Simple View
-
Spreadsheet
- Overview
-
Open a Document
- Export And Printing
-
Features
-
UI Customization
-
Gauges
- Overview
-
Data Binding
-
Bar Gauge
-
Circular Gauge
-
Linear Gauge
-
Navigation
- Overview
- Accordion
-
Menu
- Multi View
-
Drawer
-
Tab Panel
-
Tabs
-
Toolbar
- Pagination
-
Tree View
- Right-to-Left Support
-
Layout
-
Tile View
- Splitter
-
Gallery
- Scroll View
- Resizable
-
-
Editors
- Overview
- Autocomplete
-
Calendar
- Check Box
- Color Box
- Date Box
-
Date Range Box
-
Drop Down Box
-
Number Box
-
Select Box
- Switch
-
Tag Box
- Text Area
- Text Box
- Validation
- Custom Text Editor Buttons
- Right-to-Left Support
- Editor Appearance Variants
-
Forms and Multi-Purpose
- Overview
- Button Group
- Field Set
-
Filter Builder
-
Form
- Radio Group
-
Range Selector
- Numeric Scale (Lightweight)
- Numeric Scale
- Date-Time Scale (Lightweight)
- Date-Time Scale
- Logarithmic Scale
- Discrete scale
- Custom Formatting
- Use Range Selection for Calculation
- Use Range Selection for Filtering
- Image on Background
- Chart on Background
- Customized Chart on Background
- Chart on Background with Series Template
- Range Slider
- Slider
-
Sortable
-
File Management
-
File Manager
- Overview
-
File System Types
-
Customization
-
File Uploader
-
-
Actions and Lists
-
Maps
- Overview
-
Map
-
Vector Map
-
Dialogs and Notifications
-
Localization
Related Demos:
Your search did not match any results.
Scroll View
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.
Was this demo helpful?
Feel free to share demo-related thoughts here.
If you have technical questions, please create a support ticket in the DevExpress Support Center.
Thank you for the feedback!
If you have technical questions, please create a support ticket in the DevExpress Support Center.
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 Microsoft.AspNetCore.Mvc;
namespace DevExtreme.NETCore.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%;
}