SimpleGrid

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

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