Skip to content

Using jqGrid with ASP.NET MVC: Introduction

This is the first post in a short series on using the jqGrid jQuery plug-in with ASP.NET MVC. In this short introduction I will describe the plug-in, list some of its strengths and weaknesses, and explain why we selected it for our MVC applications. In the next few days, I will give detailed information about how to use the grid in your own applications.

jqGrid provides a nice-looking grid with built-in features such as sorting, editing, search, drill-down, tree lists, and more. It is based upon jQuery and integrates well with ASP.NET MVC. The grid is dual-licensed under both the GPL and MIT licenses (just like jQuery), so it can fit well into both commercial and open-source projects.

jqGrid with sub-grid

If you want to display tabular (grid) data with paging in an ASP.NET MVC application, there are essentially three choices:

  1. You can write your own grid components using HTML tables, links, manually-implemented paging, etc. This is actually less work than it might seem at first, and the first release of our ASP.NET MVC software did just this. But our own implementation lacked some of the visual flair of some of the third-party components, and avoided solving some of the harder problems, like in-line editing. Still, it was much easier than I expected, and worked well enough for our initial release.
  2. You can use a commercial component designed for ASP.NET. However, many commercial grid components don’t work well with MVC. Telerik has MVC demos available for their grid, and Developer Express has said that they intend to support MVC to some degree in the future. Even when the commercial components do support MVC at all, they don’t tend to make all of their features available in MVC applications, owing to the fundamental difference between the way ASP.NET MVC and "plain" ASP.NET work. If you are building a Web application on ASP.NET MVC, I would never recommend buying an ASP.NET component unless the vendor for that component is fully committed to supporting MVC. You cannot presume that any given ASP.NET component will work at all with MVC unless the vendor explicitly supports this.
  3. You can use a grid component which has no knowledge of ASP.NET at all. There are quite a number of these, generally built within the framework of one of the popular JavaScript libraries, and it is, ironically, easier to use one of them within ASP.NET MVC application than it is to use a grid component designed for ASP.NET (but not necessarily MVC).

As I said, we ended up choosing jqGrid. We were strongly influenced by the fact that we already use jQuery extensively in our application. There are several grid plug-ins available for jQuery. jqGrid has a number of advantages over the others I’ve seen, however:

  • Supports three different models for editing data within the grid: Single-cell editing, in-line row editing, and editing within a pop-up form.
  • Unlike some of the other jQuery grid plug-ins, jqGrid has decent documentation and a large number of demos with source code.
  • You can display a simple grid, a "sub grid" (drill down), or a treeview.
  • AJAX paging is supported in a number of different formats, including JSON, XML, or JavaScript objects via a custom function.
  • The grid is updated very regularly, and a new version, with support for the jQuery UI theming library is under active development right now.
  • Tracing through the grid source code is quite easy to do with Firebug, which is useful for figuring out things which aren’t quite covered by the documentation.

The grid also has a few downsides:

  • The API is a bit of a mess. Capitalization (significant, in JavaScript) is so varied that it seems almost random. Portions of the code were clearly written by different people with limited collaboration with the original author of the grid. There is no consistent naming convention, and similar functionality is sometimes invoked in wildly different ways. For example, you set the grid height with a custom method, setGridHeight, instead of the jQuery method height. But you reload the grid’s data with a jQuery method, trigger, passing the string "reloadGrid" as an argument. It’s a good thing the grid has decent documentation and includes source code, because you’re going to need them. The API is just not discoverable.
  • Although the grid has quite a number of options for editing, it doesn’t necessarily play well with some of the other tools you may want to use in the context of editing, such as jQuery validation. (For starters, the in-line row editing doesn’t actually use an HTML form.) The three different editing modes (single-cell, in-line row editing, and editing in a form) use different source modules, different configuration options, and work differently. Doing editing in a way not explicitly supported by the grid can be challenging.
  • Variable names in the source code use a lot of single letter and two letter abbreviations. This is quite common in JavaScript libraries, but it does make the source code a bit challenging to read.
  • Although there is both free and paid support available, there is not a commercial company standing behind the grid. So don’t expect round-the-clock support, a toll-free phone number, etc.

After a good deal of experimentation with several grids, we decided to use jqGrid because it has considerably more features than every other grid we examined (when used in MVC application), and because we didn’t find any of its limitations to be show stoppers.

The next post in this series is LINQ Extensions. There, I show an extension method for IQueryable<T> which returns data suitable for the grid, without having to know anything about the type T.

{ 17 } Comments

  1. Dan Miser | April 14, 2009 at 8:06 am | Permalink

    This promises to be an excellent series, Craig. Looking forward to it! I’ve been using the MvcContrib grid with the paging stuff, and it’s nice, but I’m looking for more (sorting, filtering, editing).

  2. Mohammed Nasman | April 15, 2009 at 6:20 am | Permalink

    Thank you Craig.

    I haven’t aware of jqGrid, and looking forward for your series,

  3. Praveen | April 20, 2009 at 6:44 pm | Permalink

    Hi Craig,
    How to use jqGrid within ASP .NET 2.0 application? Any solution or links you can point me to?

    Regards,
    Praveen

  4. Craig Stuntz | April 21, 2009 at 5:25 am | Permalink

    Praveen, I have not seen any examples of this, but it’s not so very different from doing it in MVC. The aspx will be identical. The script file will also be identical. The only real difference will be the method which supplies data for the grid. Without MVC, you can’t use an ActionResult, but you can certainly write a Web method which examines query string parameters and returns the appropriate JSON. Internally, the Json method I called uses the .NET JavaScriptSerializer type. You can call that directly in ASP.NET, since you will not have the Json method without MVC. This type is marked obsolete prior to .NET 3.5 SP1, so either use that version of .NET or add an FxCop exception to ignore the obsolete warning. Then just write the serialized JSON to Response, after setting the content-type appropriately.

  5. anbo | April 21, 2009 at 8:41 am | Permalink

    Hi Craig,
    Can you show some demos of using jqGrid with asp.net MVC?
    Thanks

  6. Craig Stuntz | April 21, 2009 at 9:46 am | Permalink

    anbo, this whole series is on exactly that. Follow the links to read the rest of the posts in this series. You will find, among other things, a downloadable ASP.NET MVC solution demonstrating jqGrid.

  7. Praveen | May 4, 2009 at 6:35 pm | Permalink

    Got something together to make it working. Have a look at the below link :
    http://praveen1305.blogspot.com/2009/05/jqgrid-with-asp-net-web-forms.html

    Very basic for now….but anyway you get the
    communication happening between JQuery,
    jqGrid and ASP .NET 2.0 Web service methods.
    Hope this helps.

    Thanks
    Praveen

  8. Sam1980s | May 21, 2009 at 11:15 pm | Permalink

    Hi,

    I checked and found out the solution this artical provides contains method signature as below.

    public ActionResult GridData(string sidx, string sord, string search, int page, int rows)

    But in the default JQGrid the method signature is only

    public ActionResult GridData(string sidx, string sord, int page, int rows)

    Can anybody please help me understanding where we need to make changes to pass the search criterias in the ActionResult as method parameters rather then the request objects.

    Regards,

    Sam

  9. gprabhakaran | June 16, 2009 at 4:58 am | Permalink

    Hi James:

    Below is my code, I need to return the result as JSON, Please let me know how to do this.

    Note: I am not using the asp.net mvc

    public string GetUsers(string sidx, string sord, int page, int rows)
    {
    int pageIndex = Convert.ToInt32(page) - 1;
    int pageSize = 10;
    int totalRecords = Context.Users.Count();
    int totalPages = (int)Math.Ceiling((float)totalRecords / (float)pageSize);

    var users = Context.Users.Skip(pageIndex * pageSize).Take(pageSize);

    var jsonData = new
    {
    total = totalPages,
    page = page,
    records = totalRecords,
    rows = (
    from user in users
    select new
    {
    i = user.Pk,
    cell = new string[] { user.Pk.ToString(), user.FullName.ToString(), user.Email.ToString() }

    }).ToArray()
    };

    return jsonData.ToString();

    }

    sample output : to fit in JQGrid.
    {"page":"1","total":2,"records":"13","rows":[{"id":"13","cell":["13","2007-10-06","Client 3","1000.00","0.00","1000.00",null]},{"id":"12","cell":["12","2007-10-06","Client 2","700.00","140.00","840.00",null
    ]},{"id":"11","cell":["11","2007-10-06","Client 1","600.00","120.00","720.00",null]},{"id":"10","cell"
    :["10","2007-10-06","Client 2","100.00","20.00","120.00",null]},{"id":"9","cell":["9","2007-10-06","Client
    1","200.00","40.00","240.00",null]},{"id":"8","cell":["8","2007-10-06","Client 3","200.00","0.00","200
    .00",null]},{"id":"7","cell":["7","2007-10-05","Client 2","120.00","12.00","134.00",null]},{"id":"6"
    ,"cell":["6","2007-10-05","Client 1","50.00","10.00","60.00",null]},{"id":"5","cell":["5","2007-10-05"
    ,"Client 3","100.00","0.00","100.00","no tax"]},{"id":"4","cell":["4","2007-10-04","Client 3","150.00"
    ,"0.00","150.00","no tax"]}]}

  10. Craig Stuntz | June 16, 2009 at 5:12 am | Permalink

    To return JSON without using MVC, use the JavaScriptSerializer type:

    // The JavaScriptSerializer type was marked as obsolete prior to .NET Framework 3.5 SP1
    #pragma warning disable 0618
    JavaScriptSerializer serializer = new JavaScriptSerializer();
    response.Write(serializer.Serialize(Data));
    #pragma warning restore 0618

    Better still, just use MVC. :)

  11. Phillip Monk | October 19, 2009 at 6:38 am | Permalink

    Hello can you help me out here i am new to asp.net and wanted to know more on formatting date columns when you posting and could you email me any more info please my brain hurts and need a simple path to follow or top blog like the one here.

  12. Craig Stuntz | October 19, 2009 at 6:56 am | Permalink

    Phillip: I’ve already discussed date formatting in this post.

  13. Cinthy | October 23, 2009 at 7:59 am | Permalink

    Hi Craig,

    Am newbie to MVC and JQuery, can you please tell me how to develop subgrid using jquery in MVC, am totally new to this, please help in developing this. I need to plement the same.

  14. Cinthy | October 23, 2009 at 8:01 am | Permalink

    Hi Craig,

    Can you show some demos of using jqGrid (subgrid) with asp.net MVC? It will help us to proceed.

    Thanks

  15. garry | November 17, 2009 at 11:50 am | Permalink

    does anyone know a webdeveloper that can add contributions to old asp sites my head is hurting trying to find a solution to adding a feed to an old asp site.

  16. Mohan | November 20, 2009 at 12:35 pm | Permalink

    Hi this is a great post for people new to MVC like me.
    I do have a question though.
    I have an ajax form that posts some data and then after that is posted is it possible to load the jqgrid with a different json data?
    Thanks

    Response: Can you elaborate on your question? I don’t understand precisely what you want to do.

  17. Hussain | November 26, 2009 at 10:32 pm | Permalink

    If some body fine the solution of jqgrid plug in with asp.net 2.0 then please post the link from that i can see the demo or code to do the same thing

{ 3 } Trackbacks

  1. [...] hours after I posted the first in a planned series of posts on using jqGrid in ASP.NET MVC applications, Phil Haack, a rather-more-widely-read-ASP.NET-MVC-blogger, wrote a long post on, er, exactly the [...]

  2. [...] introduced jqGrid and written LINQ extension methods to make supplying data to the grid easy, we’re now ready [...]

  3. [...] This is the fourth post in a series on using jqGrid with ASP.NET MVC. Today, we’re going to examine search and formatting results. I will implement a search feature and fix the problem with formatting date columns which I observed in the last post. I’ve updated the demo solution with these new features, and also fixed a bug reported by Andrey last time. If you’re new to the series, you might want to start at the beginning. [...]

Post a Comment

Your email is never published nor shared. Required fields are marked *

Bad Behavior has blocked 713 access attempts in the last 7 days.

Close