Grid control basic features
Id | Person | Food | Country | Date | Location | Chef |
3675 | Mary | Shepherd's pie | La Croisette | 11/19/2022 | Diner | Pepper Tomato |
3671 | Jeremy | Pizza | Regent | 6/13/2010 | Tavern | Demeter Harvest |
3667 | John | Cheesecake | Winterspring | 9/25/2015 | Restaurant | Josh Baskin |
3663 | Michael | Hot Beverage | Jisina | 2/13/2012 | Visit | Pepper Tomato |
3659 | Gabrielle | French toast | Goldshire | 5/19/2016 | Tavern | Omu Man |
3655 | Lucy | Big Salad | Stormwind | 4/3/2019 | Tavern | Omu Man |
3651 | Cheyenne | Big Salad | Westfall | 11/1/2017 | Visit | Omu Man |
3647 | Jonah | Shepherd's pie | Sylvanaar | 4/27/2020 | Visit | Joanna Stan |
3643 | Fernando | Soup | Ghidrimesti | 5/7/2010 | University | Chef Chef |
3639 | Audrey | Shepherd's pie | Piccadilly | 5/17/2011 | University | Charles Duchemin |
The Awesome Grid control for ASP.net Core and MVC is used to display data, by default using a table, but that can be changed. Documentation
It can get the data from the server by specifying the url
The Grid (like most awesome controls) can be bound to other controls using the
Mods are used to add additional features to the grid like: inline editing, automatic columns hiding and via dropdown, adaptive pager (based on window width), and more.
Features:
Other grid crud demos: Grid Crud (Popup), Grid in nest editing, Master Detail Crud Demo
It can get the data from the server by specifying the url
Url(urlstr)
or from a js function DataFunc(jsfunc)
(the javascript function could also do an ajax request and return the promise).
The Grid (like most awesome controls) can be bound to other controls using the
Parent
extension (used for filtering).
It can also be filtered using the api.
Mods are used to add additional features to the grid like: inline editing, automatic columns hiding and via dropdown, adaptive pager (based on window width), and more.
Features:
- Sorting (multiple and single column), Grouping
- Resize, reorder, hide and show columns (using columns selector mod or api)
- Persistence - save columns state, current page and collapsed groups/nodes
- Filtering
- Custom formatting
- Client side api
- Tree Grid
- Nesting
- Hierarchical grid (done using nesting)
- Inline Editing (using mod)
- Multiple rows group headers
- Reorder rows, also from one grid to another
- Frozen Columns, on the left and right side of the grid
- Selection
- RTL Support
- Responsive layout, and autohide columns (using Autohide mod)
- Custom rendering
- Infinite scrolling
- Cards View (using custom rendering mod)
- Client data source - get data from a js function instead of specifying url
- Export to excel, pdf, txt (csv) - demo
Other grid crud demos: Grid Crud (Popup), Grid in nest editing, Master Detail Crud Demo
See also:
Awesome Grid Video TutorialGrid Client Data Demo
Grid Mailbox Demo
Comments