Click here to Skip to main content
Licence CPOL
First Posted 26 Feb 2008
Views 41,253
Downloads 463
Bookmarked 38 times

ASP.NET GridView Extension [Client Side Sortable/Dragable....] Part I

By | 26 Feb 2008 | Article
Extension to the ASP.NET GridView control, with built-in client side sorting, column dragging, fixed header etc.
 
Part of The SQL Zone sponsored by
See Also

Introduction

All of the implementation in this article is almost the same as of my previous article: Client Side Sortable DataGird. I have just discussed some implementation differences below.

GridView differences

A DataGrid render its out put as a simple HTML table on the client while the GridView control renders an HTML table wrapped in a DIV tag. I have parsed and made the final output of this custom control highly structured than the MS grid, and it includes an HTML table wrapped by a DIV with the TBODY, THEAD, and TFOOT elements. The DIV is used to provide scrolling for lengthy data, the THEAD maps to the Header template, the TBODY maps to the actual data rows, and the TFOOT maps to the footer of the grid.

When paging is added to the DataGrid control, it displays a pager in the last row in the generated HTML table, but the GridView creates a nested HTML table in the last row main table.

The DataGrid control has an undocumented overridable function, CREATECOLUMNSET, that returns an ArrayList containing the columns that the DataGrid contains:

protected override ArrayList CreateColumnSet(PagedDataSource dataSource, bool useDataSource)
{
     .
     .
     .
}

But, the GridView control has a different function named CreateColumns, and it returns an ICollection object.

protected override ICollection CreateColumns(PagedDataSource dataSource, bool useDataSource)
{
   . 
   .
   .
}

These functions are used by these custom controls for updating the column order according to the last drag drop. This is only the case when the dragging of columns is set to true. The final change that is made for the GridView and the DataGrid is an obsolete function for registering the hidden controls that are replaced with the newer version.

Using the code

Three files are needed in your web application in order for this control to work properly:

  1. Jscript.js
  2. StyleSheet.css
  3. Dragdrop.htc

and these files are included in the demo available for download.

You need to provide a reference to the Jscript.js and StyleSheet.css files on the page where you drop this grid. You can optionally modify the Render method of this control to dynamically add these files, by using the following method provided in ASP.NET 2.0.

Page.ClientScript.RegisterClientScriptInclude

You need to set a few properties listed below in order to get a fixed header, client side sorting etc.

  • Set EnableClientSort to true to enable client-side sorting for the grid.
  • Set InitialSort to an expression if you want to sort the grid when loaded the first time. During postbacks, the grid will persist and apply user sorting automatically. The format of InitialSort should be like this: 1,ascending or 2,descending, where the number represents the column index to sort and ascending and descending describe the sort direction for the column.
  • Set EnableColumnDrag to true to be able to drag and arrange columns at client-side.
  • Set the Boundary of the grid in order to get a fixed header and auto-scroll functionality. The Boundary property contains the width and the height.
  • Set the DragColor and Hitcolor properties, these colors will be used while dragging and dropping columns at the client.

License

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

About the Author

Muhammad Abubakar Dar

Software Developer (Senior)
Systems Limited
Pakistan Pakistan

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Generalgood work but small problem Pinmemberchiya2vas20:56 19 May '10  
GeneralSome change Pinmemberraza_ahmedt422:55 12 Jan '10  
GeneralProblem in 2 grid in a page Pinmemberhbsim200217:32 27 Jul '09  
GeneralPossible changes to the grid to make it more generic Pinmembergethin stevens21:50 12 Nov '08  
Generalmore than one on a page Pinmemberkiter314:15 26 Jun '08  
GeneralRe: more than one on a page PinmemberMuhammad Abubakar Dar19:05 6 Jul '08  
Generalno boundaries PinmemberMember 376453912:59 26 Jun '08  
QuestionProblem while using with masterpages Pinmembercoolsam_19850:56 3 Jun '08  
AnswerRe: Problem while using with masterpages PinmemberMuhammad Abubakar Dar20:46 11 Jun '08  
AnswerRe: Problem while using with masterpages PinmemberMember 376453912:54 26 Jun '08  
GeneralXml not wel formed PinmemberAndre van Rijswijk4:24 17 Mar '08  
Hi
 
I get this error when i try to install this aspx:
 
XML Parsing Error: not well-formed
Location: http://localhost/grid/GridViews.aspx
Line Number 1, Column 2:<%@ Page Language="C#" AutoEventWireup="true" CodeFile="GridViews.aspx.cs" Inherits="GridViews" %>
-^
 

i am new to dot net can ne1 help
 
Regards
 
Andre
AnswerRe: Xml not wel formed PinmemberMuhammad Abubakar Dar21:04 23 Mar '08  
General[Message Removed] PinmemberMojtaba Vali0:01 1 Mar '08  
GeneralRe: using grid without a datasource PinmemberMuhammad Abubakar Dar21:47 10 Mar '08  
GeneralGood Work Pinmemberrznain18:29 27 Feb '08  
GeneralExcellent Work! PinmemberSufyan_shani20:03 26 Feb '08  
General[Message Removed] PinmemberMojtaba Vali17:22 26 Feb '08  

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

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120529.1 | Last Updated 26 Feb 2008
Article Copyright 2008 by Muhammad Abubakar Dar
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid