Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion blazor/datagrid/batch-editing.md
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ Also, the add operation is handled while performing batch editing using the bool
public string ShipCountry { get; set; }
public bool Verified { get; set; }
}
public async Task CellSavedHandler(CellSaveArgs<Order> args)
public async Task CellSavedHandler(CellSavedArgs<Order> args)
{
var index = await Grid.GetRowIndexByPrimaryKey(args.RowData.OrderID);
if (args.ColumnName == "Quantity")
Expand Down
2 changes: 1 addition & 1 deletion blazor/datagrid/events.md
Original file line number Diff line number Diff line change
Expand Up @@ -940,7 +940,7 @@ N> All the events should be provided in a single **GridEvents** component.
public double? Freight { get; set; }
}

public void CellSavedHandler(CellSaveArgs<Order> args)
public void CellSavedHandler(CellSavedArgs<Order> args)
{
// Here, you can customize your code.
}
Expand Down