Skip to content

Commit 4ba717f

Browse files
Update Nested_crud.md (#179)
Fixed typo ("Fist of" -> "First off,")
1 parent bfd456b commit 4ba717f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/blazor_server/Nested_crud.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ And these subgrids can also be configured with CRUD support, so you can add, edi
99

1010
### Column definition
1111

12-
Fist of all the column definition of the main grid must include the ```SubGrid``` method for those columns that have a 1:N relationship.
12+
First off, all the column definition of the main grid must include the ```SubGrid``` method for those columns that have a 1:N relationship.
1313

1414
```c#
1515
c.Add(o => o.OrderDetails).Titled("Order Details").SubGrid(subgrid, ("OrderID", "OrderID"));
@@ -56,4 +56,4 @@ Then you have to define the subgrid that you want to show on the CRUD forms.
5656
```
5757
This function is passed as parameter of the ```Subgrid``` method used on the first step. Of course subgrids must be configured with CRUD support using the ```Crud()``` method of the ```GridClient``` object.
5858

59-
[<- CRUD](Crud.md) | [Events, exceptions and CRUD validation ->](Events.md)
59+
[<- CRUD](Crud.md) | [Events, exceptions and CRUD validation ->](Events.md)

0 commit comments

Comments
 (0)