<div>
@if (Items.Count == 0)
{
<SfGrid @ref="Grid" DataSource="@Items"
AllowGrouping="true" AllowPaging="true">
</SfGrid>
}
else
{
<SfGrid @ref="Grid" DataSource="@Items"
AllowGrouping="true" AllowPaging="true">
<GridColumns>
@foreach (var pair in Items[0])
{
<GridColumn Field="@pair.Key"></GridColumn>
}
</GridColumns>
</SfGrid>
}
</div> |