<SfGrid DataSource="@customers" AllowPaging="true" AllowGrouping="true" Toolbar="@toolbar">
<GridEditSettings AllowAdding="true" AllowEditing="true" AllowDeleting="true"></GridEditSettings>
<GridPageSettings PageSize="5"></GridPageSettings>
<GridFilterSettings Type = "Syncfusion.Blazor.Grids.FilterType.Menu"></GridFilterSettings>
<GridEvents OnActionBegin="ActionBeginHandler" OnActionComplete="ActionCompleteHandler" TValue="Customer"></GridEvents>
<GridColumns>
<GridColumn IsPrimaryKey=true Field="@nameof(Customer.Id)" Width="40px" Format="d" HeaderText="ID" />
<GridColumn Field="@nameof(Customer.Name)" Width="80px" HeaderText="Name" />
<GridColumn Field="@nameof(Customer.Age)" Width ="60px" HeaderText="Age" />
<GridColumn Field="@nameof(Customer.CreatedDate)" Width="60px" Format="d" HeaderText="Created Date" />
<GridColumn Field="@nameof(Customer.ShoeSize)" Width="60px" HeaderText="Shoe Size" />
</GridColumns>
</SfGrid>
This works fine without the closing tags. But if I try to add a <GridForeignColumn> I will get an error since the GridColumns aren't closed. If i try to just add the </GridColumn> I get errors for each. Any help in what I am missing would be appreciated. Thanks
Columns>