-
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
-
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
Data Grid - Column Reordering
DataGrid columns have the same order as fields in data objects. You can use the columns array to specify a different order. To reorder a column at runtime, change column.visibleIndex property.
Users can drag and drop column headers to reorder columns. To enable this feature, set the allowColumnReordering property to true. If you do not want users to drag a specific column, disable its column.allowReordering property.
If you have technical questions, please create a support ticket in the DevExpress Support Center.
@using DevExtreme.MVC.Demos.Models.DataGrid
@model IEnumerable<Employee>
@(Html.DevExtreme().DataGrid<Employee>()
.ID("gridContainer")
.DataSource(Model, "ID")
.AllowColumnReordering(true)
.ColumnAutoWidth(true)
.ShowBorders(true)
.ColumnFixing(c => c.Enabled(true))
.Columns(columns => {
columns.Add()
.Caption("Employee")
.Fixed(true)
.CalculateCellValue(@<text>
function(data) {
return [data.Prefix,
data.FirstName, data.LastName]
.join(" ");
}
</text>);
columns.AddFor(m => m.Position)
.Fixed(true)
.Alignment(HorizontalAlignment.Right);
columns.AddFor(m => m.Address);
columns.AddFor(m => m.City);
columns.AddFor(m => m.Zipcode);
columns.AddFor(m => m.State);
columns.AddFor(m => m.Department);
columns.AddFor(m => m.BirthDate)
.DataType(GridColumnDataType.Date);
columns.AddFor(m => m.HireDate)
.DataType(GridColumnDataType.Date);
columns.AddFor(m => m.HomePhone);
columns.AddFor(m => m.Phone)
.Caption("Mobile Phone");
columns.AddFor(m => m.Email);
columns.AddFor(m => m.Skype);
})
)
xxxxxxxxxx
xxxxxxxxxx
xxxxxxxxxx
This demo shows how fixed columns behave during user-initiated reordering. Users can drag and drop columns within the following areas (but not between them):
- Columns fixed to the left
- Non-fixed columns
- Columns fixed to the right
Sticky columns (fixed with the 'sticky' position) behave like non-fixed columns during reordering (even if they are in a state where they are attached to a border/fixed column). To see sticky columns in this demo, right-click a column to open a context menu. Choose "Set Fixed Position -> Sticky" to stick a column.