Skip to content

Instantly share code, notes, and snippets.

@vnbaaij
Created November 30, 2022 20:55
Show Gist options
  • Save vnbaaij/e417e71580e50f3c7f5d9b78e89c0896 to your computer and use it in GitHub Desktop.
Save vnbaaij/e417e71580e50f3c7f5d9b78e89c0896 to your computer and use it in GitHub Desktop.
New grid definition
<FluentDataGrid RowsData="@people">
<PropertyColumn Property="@(p => p.PersonId)" Sortable="true" />
<PropertyColumn Property="@(p => p.Name)" Sortable="true" />
<PropertyColumn Property="@(p => p.BirthDate)" Format="yyyy-MM-dd" Sortable="true" />
<FluentDataGrid>
@code {
record Person(int PersonId, string Name, DateOnly BirthDate);
IQueryable<Person> people = new[]
{
new Person(10895, "Jean Martin", new DateOnly(1985, 3, 16)),
new Person(10944, "António Langa", new DateOnly(1991, 12, 1)),
new Person(11203, "Julie Smith", new DateOnly(1958, 10, 10)),
new Person(11205, "Nur Sari", new DateOnly(1922, 4, 27)),
new Person(11898, "Jose Hernandez", new DateOnly(2011, 5, 3)),
new Person(12130, "Kenji Sato", new DateOnly(2004, 1, 9)),
}.AsQueryable();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment