-
Data Grids / Data Management
-
Data Grid
- Overview
-
Data Binding
-
Filtering
- Sorting
-
Editing
-
Grouping
-
Selection
- Focused Row
- Paging
-
Scrolling
-
Columns
-
Master-Detail
-
Data Summaries
-
Drag & Drop
-
Export to PDF
-
Export to Excel
- Appearance
-
Customization
- State Persistence
-
Adaptability
-
Keyboard Navigation
- Right-To-Left Support
-
Tree List
- Overview
-
Data Binding
-
Filtering
- Sorting
-
Editing
-
Selection
- Focused Row
- Paging
-
Columns
- Drag & Drop
- State Persistence
- Adaptability
-
Keyboard Navigation
-
Card View
-
Pivot Grid
- Overview
-
Data Binding
-
Field Management
-
Data Summaries
- Drill Down
- Filtering
-
Scrolling
-
Export to Excel
- Chart Integration
- Customization
- State Persistence
-
Filter Builder
-
-
Data Visualization
-
Charts
- Overview
-
Data Binding
-
Common Concepts
-
Axis
-
Aggregation
-
Tooltips
-
Selection
-
Customization
-
Zooming
-
Export
-
-
Area Charts
-
Bar Charts
- Bullet Charts
-
Doughnut Charts
-
Financial Charts
-
Funnel and Pyramid Charts
-
Line Charts
- Pareto Chart
-
Pie Charts
-
Point Charts
-
Polar and Radar Charts
-
Range Charts
- Sankey Chart
-
Sparkline Charts
-
Tree Map
-
Gauges
- Overview
-
Runtime update
-
Bar Gauge
-
Circular Gauge
-
Linear Gauge
-
Diagram
- Overview
-
Data Binding
-
Featured Shapes
-
Custom Shapes
-
Document Capabilities
-
User Interaction
- UI Customization
- Adaptability
-
-
Scheduling / Planning
-
Scheduler
- Overview
-
Data Binding
-
Views
-
Appointments
-
Timetable
- Editing
-
Grouping
- Virtual Scrolling
- Drag & Drop
-
Customization
- Adaptability
-
Gantt
- Overview
- Data Binding
-
Filtering
- Sorting
- Strip Lines
- Export to PDF
- Validation
-
Customization
-
-
Reporting
-
AI-powered Extensions
-
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
-
Messaging
-
WYSIWYG Editor
-
Forms
-
Data Editors
- Overview
-
Common Concepts
-
Calendar
- Check Box
- Color Box
- Date Box
-
Date Range Box
-
Number Box
- Radio Group
-
Range Selector
- Range Slider
- Slider
- Switch
- Text Area
- Text Box
-
Drop-Downs
- Autocomplete
-
Drop Down Box
-
Select Box
-
Tag Box
-
Lookup
-
Buttons
-
File Upload / File Management
-
File Manager
- Overview
-
File System Types
-
Customization
-
File Uploader
-
-
Popup and Notifications
-
Navigation
- Overview
- Accordion
-
Context Menu
-
Menu
- Multi View
-
Drawer
-
Tab Panel
-
Tabs
-
Toolbar
-
Stepper
- Pagination
-
List
-
Tree View
- Right-to-Left Support
-
Layout
-
Tile View
- Splitter
-
Gallery
- Scroll View
-
-
Interactive Wrappers
-
Sortable
- Resizable
-
-
Progress Indicators
-
Maps
- Overview
-
Map
-
Vector Map
-
Data Binding
- Multiple Layers
-
Markers
- Legend
-
Zooming and Panning
-
Customization
-
-
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.
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%;
}