Click here to Skip to main content
15,884,176 members
Articles / Web Development / ASP.NET

WebGrid in ASP.NET MVC – 6 important tips

Rate me:
Please Sign up or sign in to vote.
4.75/5 (20 votes)
18 Nov 2014CPOL5 min read 108K   37   10
In this article we will try to understand MVC WebGrid and 6 important tips which help you to use WebGrid effectively.

Contents

WebGrid in ASP.NET MVC – 6 important tips

Introduction

Simple Example of MVC WebGrid

Tip1 :- Sorting in MVC WebGrid

Tip 2 :- Paging in MVC WebGrid

Tip 3 :- Display Necessary Columns MVC WebGrid

Tip 4 :- Giving Custom Column Name’s in MVC WebGrid

Tip 5 :- Adding Style to MVC WebGrid

Tip 6:- Implementing Ajax with WebGrid

WebGrid in ASP.NET MVC – 6 important tips

Introduction

When a Webform developer migrates himself to MVC he sees some of his favorite things missing. He does not see the behind code, view state, page life cycle, server controls and so on. You can see this article what an ASP.NET Webform developer will miss when he comes to MVC.

But lots of developers go in to a heart breaking and jaw dropping state when they see their favorite server controls missing. From that the most missed is the gridview / datagrid controls. As a ASP.NET Webform developer I really understand the fun of dragging and dropping the GridView control on the form , binding and seeing the output in seconds is addiction.

So in MVC we have the “WebGrid” class for rescue. It’s a class again I repeat a class so it does not match to those visual RAD of old gridview and data grid but is pretty much better than using raw HTML tables if you want to reduce time. In case you are still wondering why we do not have visual RAD support for MVC read this article ASP.NET Webform VS ASP.NET MVC.

In this article we will try to understand MVC WebGrid and 6 important tips which help you to use WebGrid effectively.

Simple Example of MVC WebGrid

“WebGrid” displays from a collection , now that collection can be a strong typed list, generic etc. So let us a see a first let us load a simple collection with some strongly typed objects and display these objects in to a grid using “WebGrid” class.

In the below code you can see we have loaded a simple “List” collection with “Customer” objects in variable called as “Custs”.

”html”
@{
    List<Customer> Custs = new List<Customer>();
    Custs.Add(new Customer { CustomerCode = "1001", CustomerName = "Shiv" });
    Custs.Add(new Customer { CustomerCode = "1002", CustomerName = "Shiv1" });

In order to display the collection on a MVC view we create the object of “WebGrid” and pass the “Customer” collection via the constructor of the “WebGrid” class.”Custs” is a variable collection of list of customers.

The second step is to call “GetHtml()” method to display the grid in HTML table format.

”html”
@{
    WebGrid obj = new WebGrid(Custs);
}
@obj.GetHtml();

Once you can run the above view using MVC you should get a display as shown in the below figure. Nice isn’t it :-).

Image 1

Tip1 :- Sorting in MVC WebGrid

When you talk about displaying data in the grid the first thing we look is how to do sorting.In MVC “WebGrid” by default sorting happens on the column names. If you see the column names very closely it has hyperlinks which helps you do sorting.

Image 2

In case you want to disable the hyperlink sorting you can make “canSort” as “false” as shown in the below code snippet.

”html”
WebGrid obj = new WebGrid(Custs, canSort:false);

If you want to apply a default sort you can pass the column name to the “defaultsort” in the constructor as shown in the below code.

”html”
WebGrid obj = new WebGrid(Custs,defaultSort:"CustomerCode");

Image 3

Tip 2 :- Paging in MVC WebGrid

For doing paging using MVC WebGrid you can specify the “rowsPerPage” value as shown in the below code.

”html”
WebGrid obj = new WebGrid(Custs,rowsPerPage:3);

The paging is seen as hyperlinks as shown in the below figure.

Image 4

Tip 3 :- Display Necessary Columns MVC WebGrid

Lot of times you have 10 columns in the collection but you want to display only 5. In order to display necessary columns you can use “ColumnNames” parameter and specify the column names.

”html”
WebGrid obj = new WebGrid(Custs,columnNames: new[] { "CustomerCode"});

In the below display you can see “CustomerCode” is only displayed and “CustomerName” is suppressed.

Image 5

Tip 4 :- Giving Custom Column Name’s in MVC WebGrid

Many times the column names specified in the collection is not user friendly. For example we have a column name as “CCode” but when we want to display the same on the grid we would like to display it as “CustomerCode”.

For that we need pass the column names in the “columns” parameter in the “GetHtml” function as shown below. In the below code snippet we want to display “CustomerCode” as “Code” and “CustomerName” as “Name”.

”html”
@{
    WebGrid obj = new WebGrid(Custs);
}

@obj.GetHtml(columns: obj.Columns(
 obj.Column("CustomerCode", header: "Code"),
     obj.Column("CustomerName", header: "Name")
 ));

If you run the above view you will get a display as shown in the below figure.

Image 6

Tip 5 :- Adding Style to MVC WebGrid

One of the most demanded feature from a developer is changing the look and feel of the grid. In MVC Webgrid we can create a style in CSS and apply the same to the webgrid.

You can apply style to all sections of the WebGrid. In other words you can apply CSS style to table footer, header , row etc.

So you can create CSS the way do normally. You can see in the below code snippet we have created a style “webGrid” with specific margin , border and width etc.

”html”
<style type="text/css">
    .webGrid {
        margin: 4px;
        border-collapse: collapse;
        width: 500px;
        background-color: #B4CFC3;
    }

The above style can now be applied to the grid by setting the “tableStyle” in the “GetHtml” function.

”html”
@{
    WebGrid obj = new WebGrid(Custs);
}
@obj.GetHtml(tableStyle:"webGrid");

If you run the above code you see your table with the below style in the browser.

Image 7

Tip 6:- Implementing Ajax with WebGrid

Ajax is now a default thing needed in all websites. If you want to enable Ajax in WebGrid you need to the following. First step wrap the call to “GetHtml” in a HTML div tag as shown in the below code. The second step is to provide the div tag id value in “ajaxUpdateContainerId” parameter.

<div id="div1">
    @{
        WebGrid obj = new WebGrid(Custs, ajaxUpdateContainerId: "div1");
    }
    @obj.GetHtml();
</div> 

In case you are new to ASP.NET MVC start with the video Learn MVC in 2 day’s a.k.a 16 hours.

Image 8

For further reading do watch the below interview preparation videos and step by step video series.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect https://www.questpond.com
India India

Comments and Discussions

 
QuestionWhat about the CRUD Pin
Member 1394405415-Aug-18 10:37
Member 1394405415-Aug-18 10:37 
QuestionNice Post Pin
mjoseph aguilar15-Aug-16 6:20
mjoseph aguilar15-Aug-16 6:20 
QuestionHow to update checkbox data in database Pin
Member 119308878-Nov-15 19:08
Member 119308878-Nov-15 19:08 
QuestionHow can I style it's pagination? Pin
AvishekhBharati17-Sep-15 6:57
AvishekhBharati17-Sep-15 6:57 
QuestionSource Pin
Bill Ahern10-Apr-15 10:38
Bill Ahern10-Apr-15 10:38 
GeneralMy vote of 5 Pin
Carsten V2.019-Nov-14 8:33
Carsten V2.019-Nov-14 8:33 
QuestionOr you could just use tableSorter Pin
lespauled19-Nov-14 3:39
lespauled19-Nov-14 3:39 
GeneralMy vote of 5 Pin
Humayun Kabir Mamun18-Nov-14 18:57
Humayun Kabir Mamun18-Nov-14 18:57 
QuestionWebGrid in ASP.NET MVC – 6 important tips Pin
ankur_060318-Nov-14 7:47
ankur_060318-Nov-14 7:47 
QuestionSource code plz? Pin
soft.narayan18-Nov-14 5:41
soft.narayan18-Nov-14 5:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.