Basic Usage
Name | Movie Director | Movie Genre | Released |
---|---|---|---|
Star Wars | George Lucas | Sci-Fi | 1997 |
Reservoir Dogs | Quentin Tarantino | Thriller | 1992 |
Airplane! | David and Jerry Zucker and Jim Abrahams | Slapstick | 1980 |
Terminator | James Cameron | Action | 1984 |
Terminator 2: Judgement Day | James Cameron | Action | 1991 |
Wonder Woman 1984 | Action | 2020 | |
Close Encounters of the Third Kind | Steven Spielberg | Sci-Fi | 1997 |
Rocky | John G. Avildsen | Action | |
Brave Heart | Mel Gibson | Action | |
Movie with <b>bold</b> | This Guy | Test | |
The Godfather | The Godfather | Mob | 1972 |
Citizen Kane | Orson Welles | Drama | 1941 |
The Shawshank Redemption | Frank Drabont | Drama | 1994 |
Pulp Fiction | Quentin Tarantino | Action | 1994 |
Casablanca | Michael Curtiz | Drama | 1942 |
2001: A Space Odyssey | Stanley Kubrick | Sci-Fi | 1968 |
Model
public class Movie
{
[Display(Order = 2)]
public string Name { get; set; }
[Display(Name = "Movie Director", Order = 1)]
public string Director { get; set; }
[DisplayName("Movie Genre")]
public string Genre { get; set; }
[Display(AutoGenerateField = true)]
public int? Released { get; set; }
[Display(AutoGenerateField = false)]
public ICollection<CastMember> Cast { get; set; }
}
public class CastMember
{
public string Name { get; set; }
public string Character { get; set; }
public override string ToString()
=> $"{Name} as {Character}";
}
View
@model IQueryable<Movie>
@(await Html
.SimpleGrid(Model)
.AddColumnsForModel()
.RenderAsync())
Controller
[HttpGet]
public IActionResult BasicUsage()
{
return View(SampleData.Movies.AsQueryable());
}
HTML Rendered
<table class='table'>
<thead class="SimpleGridSortNav">
<tr >
<th >Name</th>
<th >Movie Director</th>
<th >Movie Genre</th>
<th >Released</th>
</tr>
</thead>
<tbody>
<tr >
<td >Star Wars</td>
<td >George Lucas</td>
<td >Sci-Fi</td>
<td >1997</td>
</tr>
<tr >
<td >Reservoir Dogs</td>
<td >Quentin Tarantino</td>
<td >Thriller</td>
<td >1992</td>
</tr>
<tr >
<td >Airplane!</td>
<td >David and Jerry Zucker and Jim Abrahams</td>
<td >Slapstick</td>
<td >1980</td>
</tr>
</tbody>
</table>