I'm trying to add a row by clicking the Add button on the grid toolbar. I was expecting a new blank row to appear but nothing happens.
<SfGrid @ref="grid" DataSource="@model.Orders" EnableVirtualization="true" TValue="Order" AllowSelection="true" AllowSorting="true" AllowReordering="true" AllowResizing="true" Toolbar="@(new List<string>() { "Add", "Edit", "Delete", "Cancel", "Update" })">
<GridSelectionSettings Type="Syncfusion.Blazor.Grids.SelectionType.Single"></GridSelectionSettings>
<GridEditSettings AllowAdding="true" AllowEditing="true" AllowDeleting="true" AllowEditOnDblClick="true" Mode="@EditMode.Normal"></GridEditSettings>
<GridEvents TValue="Order" OnActionComplete="ActionCompleteHandler" />
<GridColumns>
<GridColumn Field=@nameof(Order.Id) HeaderText="Id" IsPrimaryKey="true" IsIdentity="true" Visible="false"></GridColumn>
<GridForeignColumn Field=@nameof(Order.ProductId) ForeignKeyField="Id" ForeignKeyValue="Name" ForeignDataSource="products" HeaderText="Product Name"></GridForeignColumn>
<GridColumn Field=@nameof(Order.ConnectOnHand) HeaderText="Connect On Hand*" AllowEditing="false"></GridColumn>
<GridColumn Field=@nameof(Order.OrderQuantity) HeaderText="Order Quantity"></GridColumn>
<GridColumn Field=@nameof(Order.LotCodes) HeaderText="Lot Codes"></GridColumn>
<GridColumn Field=@nameof(Order.PalletSpaces) HeaderText="Pallet Spaces"></GridColumn>
</GridColumns>
</SfGrid>