MVCxGridViewEditingSettings.DeleteRowRouteValues Property
Defines the callback routing logic by specifying the names of a Controller and an Action which should handle callbacks related to row deleting.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.1.dll
NuGet Package: DevExpress.Web.Mvc5
Declaration
Property Value
Type | Description |
---|---|
Object | An object containing the Controller and Action names. |
Property Paths
You can access this nested property as listed below:
Object Type | Path to DeleteRowRouteValues |
---|---|
GridViewSettings |
|
MVCxGridView |
|
MVCxGridViewProperties |
|
Remarks
If row deletion is allowed for GridView, you should provide an associated controller action that will apply delete operations to a Model and return the grid’s partial view. Use the DeleteRowRouteValues property to reference this controller action by its name and the name of its controller.
Note that in an action that handles update operations, you can obtain the edited object using our specific DevExpressEditorsBinder model binder.
View (InlineEditingPartial):
var grid = Html.DevExpress().GridView(
settings =>
{
settings.Name = "gvEditing";
settings.KeyFieldName = "ProductID";
settings.CallbackRouteValues = new { Controller = "GridView", Action = "InlineEditingPartial" };
...
settings.SettingsEditing.DeleteRowRouteValues = new { Controller = "GridView", Action = "InlineEditingDeletePartial" };
...
grid.Bind(Model).Render();
Controller (‘GridViewController’):
public partial class GridViewController : Controller {
...
public ActionResult InlineEditingPartial() {
return PartialView("InlineEditingPartial", NorthwindDataProvider.GetEditableProducts());
}
...
[HttpPost]
public ActionResult InlineEditingDeletePartial(int productID) {
if(productID > 0) {
try {
NorthwindDataProvider.DeleteProduct(productID);
}
catch(Exception e) {
ViewData["EditError"] = e.Message;
}
}
return PartialView("InlineEditingPartial", NorthwindDataProvider.GetEditableProducts());
}
...