Example T1103487
Visible to All Users

Grid for Blazor – How to enable inline data editing

This example demonstrates how to enable inline data editing in the DevExpress Blazor Grid component.

Inline editing

Set the Grid's EditMode property to EditRow to display inline editors instead of the edited row.

The Grid automatically generates and configues editors for data columns based on assosiated data types. Use a data column's EditSettings property to customize the default editor generated for this column. This example customizes the spin editor generated for the Unit Price column and replaces the Category Name column's spin editor with a combo box.

Documentation

Files to Review:

Does this example address your development requirements/objectives?

(you will be redirected to DevExpress.com to submit your response)

Example Code

EditRow/Pages/Index.razor
Razor
@page "/" @implements IDisposable @using AutoMapper @using DevExpress.Blazor.Internal @inject IDbContextFactory<NorthwindContext> NorthwindContextFactory @inject IGlobalOptionsService GlobalOptionsService @if(IsLoading) { <text>Loading...</text> }else { <DxGrid Data="Products" EditMode="GridEditMode.EditRow" CustomizeEditModel="Grid_CustomizeEditModel" EditModelSaving="Grid_EditModelSaving"> <Columns> <DxGridCommandColumn DeleteButtonVisible="false" Width="15%" /> <DxGridDataColumn FieldName="ProductName" Width="25%" /> <DxGridDataColumn FieldName="CategoryId" Caption="Category Name" Width="10%"> <EditSettings> <DxComboBoxSettings Data="Categories" ValueFieldName="CategoryId" TextFieldName="CategoryName"/> </EditSettings> </DxGridDataColumn> <DxGridDataColumn FieldName="UnitPrice" DisplayFormat="c" Width="10%"> <EditSettings> <DxSpinEditSettings MinValue="0M" Mask="n3" /> </EditSettings> </DxGridDataColumn> <DxGridDataColumn FieldName="UnitsInStock" /> <DxGridDataColumn FieldName="QuantityPerUnit" Width="15%" /> <DxGridDataColumn FieldName="Discontinued" /> </Columns> </DxGrid> } @code { NorthwindContext Northwind { get; set; } List<Product> Products { get; set; } List<Category> Categories { get; set; } IMapper ProductMapper { get; set; } bool IsLoading { get; set; } = true; protected override async Task OnInitializedAsync() { var config = new MapperConfiguration(c => c.CreateMap<Product, EditableProduct>().ReverseMap()); ProductMapper = config.CreateMapper(); Northwind = NorthwindContextFactory.CreateDbContext(); Products = await Northwind.Products.ToListAsync(); Categories = await Northwind.Categories.ToListAsync(); GlobalOptionsService.GlobalOptions.ShowValidationIcon = true; IsLoading = false; } void Grid_CustomizeEditModel(GridCustomizeEditModelEventArgs e) { var editableProduct = new EditableProduct(); if(!e.IsNew) ProductMapper.Map((Product)e.DataItem, editableProduct); e.EditModel = editableProduct; } async Task Grid_EditModelSaving(GridEditModelSavingEventArgs e) { var editableProduct = (EditableProduct)e.EditModel; var product = e.IsNew ? new Product() : Northwind.Products.Find(e.Grid.GetDataItemValue(e.DataItem, "ProductId")); ProductMapper.Map(editableProduct, product); if(e.IsNew) await Northwind.Products.AddAsync(product); await Northwind.SaveChangesAsync(); Products = await Northwind.Products.ToListAsync(); } public void Dispose() { Northwind?.Dispose(); } }

Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.