Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Advanced WebGrid tutorial or solution

I am looking for some tutorial or solution that shows how can I make a Webgrid with few advanced functionalities at once: paging, sorting, edit and delete buttons for every row, checkboxes for every row, edit and delete buttons for rows that are checked and select all button.

I know I can make all those functionalities quite simply with jQuery and on click events. But I am looking for some clean solution that is made with good manners and using as much as it can from ASP.NET MVC technology...

like image 451
Sebastian Xawery Wiśniowiecki Avatar asked Mar 06 '15 10:03

Sebastian Xawery Wiśniowiecki


1 Answers

After few days of searching and reading I have found few valuable tutorials and instructions that are worth reading if you will ever face similar problem:

  • Search, sort, paging, insert, update and delete with ASP.Net MVC and bootstrap modal popup PART-1
  • Search, sort, paging, insert, update and delete with ASP.Net MVC and bootstrap modal popup PART-2
  • Extending the MVC WebGrid with HTML Helpers
  • Insert, Update and Delete MVC WebGrid Data using JQuery
  • MVC 4 Razor: How to Select / Deselect All Checkboxes inside a Webgrid in ASP.NET Application using C#.NET
  • How to delete multiple webgrid rows by using Checkboxes in asp.net MVC 4 Application
  • Webgrid Paging, sorting and filtering in ASP.Net MVC

After reading them WebGrid functionalities are much more clear and simple and my knowledge of WebGrid is much bigger.

like image 200
Sebastian Xawery Wiśniowiecki Avatar answered Nov 09 '22 00:11

Sebastian Xawery Wiśniowiecki