SimpleGrid

SimpleGrid is an ASP.Net Core Grid Control. Here are some samples to demonstrate how to use it.

Name Description
AJAX Use AJAX for paging and search in the grid.
Form2 Use a SimpleGrid as form. This demonstrates editing models and recieving updated data in your controller.
Form Use a SimpleGrid as form. This demonstrates checkbox handling.
Column Selection There are several ways to control which columns to include in your grid.
No Headers Surpress column headers altogether.
Options Set some grid options such as maximum rows and the No records message. Also override partial view with your own.
Bullet List Render an HTML bullet list
Enum Render an enumerated value as an int, field name, or Display Name.
MultipleGrids Provide a GridId if you want to paginate or search multiple grids on one page.
Order Columns Order the columns based on the Display.Order Attribute
Installation Just install the NuGet package and go!
Row Numbers Include a column with the column number.
Column Headers How to specify what text to render for column headers.
Column Display How to build the item render.
Date and Time Handle local timezone DateTime.
Sorting Enable dynamic sorting on based on columns and specify the default sort order.
Embedding Grids Embed TwoColumnGrids and SimpleGrids inside your grid. How meta!
Encoding Disable encoding to embed raw HTML
Extensions Create your own custom SimpleGrid extension!
Links Create links in item render
Row Modifier Apply CSS on a row based on criteria.
CSS Apply CSS classes and styles to the table, header, and rows.
Search Add custom search capabilities quickly and easily.
Pagination Add a Pager to the grid for large data sets.
Footer Add a footer row to the Grid.
Kitchen Sink A sample SimpleGrid using many of the options available.
Basic Usage A minimial SimpleGrid. This includes the Movie model for reference which is used in many of the other Samples as well.