aspnetmvc-devexpress-dot-web-dot-mvc-dot-verticalgridsettings-a51bcbb6.md
Defines the callback routing logic by specifying the names of Controllers and Actions that handle callbacks related to VerticalGrid data operations such as paging, sorting, grouping and filtering.
Namespace : DevExpress.Web.Mvc
Assembly : DevExpress.Web.Mvc5.v25.2.dll
NuGet Package : DevExpress.Web.Mvc5
public Dictionary<VerticalGridOperationType, object> CustomBindingRouteValuesCollection { get; }
Public ReadOnly Property CustomBindingRouteValuesCollection As Dictionary(Of VerticalGridOperationType, Object)
| Type | Description |
|---|---|
| Dictionary<VerticalGridOperationType, Object> |
An object containing the data operation type (identified by VerticalGridOperationType) and the names of Controllers and Actions.
|
The CustomBindingRouteValuesCollection property allows you to assign particular handling Actions for three data operations - Paging, Sorting and Filtering. These data operations are specifically exposed to be handled in a custom manner to implement custom data binding of the VerticalGrid. These operations are identified by values of the VerticalGridOperationType enumeration.
Refer to Action Types and Passed Parameters to learn more.
A code sample detailing how to use the CustomBindingRouteValuesCollection property is provided below.
Partial View Code:
@Html.DevExpress().VerticalGrid(
settings => {
...
settings.CustomBindingRouteValuesCollection.Add(
VerticalGridOperationType.Paging,
new { Controller = "MyController", Action = "MyPagingAction" }
);
settings.CustomBindingRouteValuesCollection.Add(
VerticalGridOperationType.Sorting,
new { Controller = "MyController", Action = "MySortingAction" }
);
settings.CustomBindingRouteValuesCollection.Add(
VerticalGridOperationType.Filtering,
new { Controller = "MyController", Action = "MyFilteringAction" }
);
...
See Also