Click here to Skip to main content
15,889,116 members
Articles / Web Development / ASP.NET
Tip/Trick

Resizable ASP.NET Gridview Columns using Jquery

Rate me:
Please Sign up or sign in to vote.
4.81/5 (14 votes)
14 Apr 2012CPOL 93.7K   4.1K   23   27
This tip explains how to use jQuery's plug-in colResizable to implement client-side column resizing in an ASP.NET GridView.

Introduction

This tip explains how to use jQuery's plug-in colResizable to implement client-side column resizing in an ASP.NET GridView.

Using the Code

In addition to colResizable, I also use Jquery cookie plugin to store columns width in a cookie, so that ASP.NET postback won't reset column width. Now, download and include the jQuery, cookie and colResizable JavaScript files as follows:

JavaScript
<script type="text/javascript" src="scripts/jquery-latest.js"/>
<script src="/Scripts/colResizable-1.3.min.js" type="text/javascript"/>
<script src="/Scripts/jquery.cookie.js" type="text/javascript"/>  

Initialize the table width from cookie and colResizable plugin when the document is ready, using the code below:

JavaScript
$(document).ready(function() 
{ 
    if ($.cookie('colWidth') != null) {
        var columns = $.cookie('colWidth').split(',');
        var i = 0;
        $('.GridViewStyle th').each(function () {
            $(this).width(columns[i++]);
        });
    }
 
    $(".GridViewStyle").colResizable({
        liveDrag: true,
        gripInnerHtml: "<div class='grip'></div>",
        draggingClass: "dragging",
        onResize: onSampleResized
    }); }); 

A callback function onSampleResized will be fired when the user has ended dragging a column anchor altering the previous table layout. It will read columns width and store them in a cookie.

JavaScript
var onSampleResized = function (e) {
    var columns = $(e.currentTarget).find("th");
    var msg = "";
    columns.each(function () { msg += $(this).width() + ","; })
    $.cookie("colWidth", msg);
};  

Here is an ASP.NET Gridview.

ASP.NET
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" <br />DataKeyNames="Id" GridLines="None" CssClass="GridViewStyle">
<Columns>
......
...... 
<Columns>
</asp:GridView> 

The final output can be seen here:

Summary

This tip showed how to Resize ASP.NET gridview using Jquery.

License

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


Written By
Software Developer (Senior) http://www.Fairnet.com
Canada Canada
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
AnswerRe: Can you attach source code Pin
Farooq Kaiser14-Apr-12 12:46
professionalFarooq Kaiser14-Apr-12 12:46 
GeneralMy vote of 5 Pin
Justin Cooney13-Apr-12 13:57
Justin Cooney13-Apr-12 13:57 

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.