5,693,062 members and growing! (19,345 online)
Email Password   helpLost your password?
Web Development » ASP.NET Controls » General     Intermediate License: The Code Project Open License (CPOL)

Freeze Table Header and Columns

By irwansyah

A control to freeze table header and columns
Windows, .NET, Visual Studio, ASP.NET, Dev

Posted: 31 May 2004
Updated: 31 May 2004
Views: 83,573
Bookmarked: 33 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
11 votes for this Article.
Popularity: 3.78 Rating: 3.63 out of 5
1 vote, 9.1%
1
1 vote, 9.1%
2
1 vote, 9.1%
3
1 vote, 9.1%
4
7 votes, 63.6%
5

Introduction

I was developing a web based application that needed a datagrid/table that can freeze its header and columns, and also have a complex that consists of merged cells. I have searched on the internet but I still can't find the one that I wanted. So, I decided to build it by my self, and thank god I made it :). And now I want to share the code with the world. This article describe how to build a table with freeze capability using built-in ASP.Net controls and some HTML tags.

Using the code

To build the freeze-able table we need to use the DIV, TABLE tag, ASP.Net Panel and PlaceHolder control and of course some javascript and CSS. You can see the layout in Figure 1.

Figure 1. The layout to position the tag and controls.
Object Name Description
divScrollbar We will use this to show horizontal scrollbar. So we can show the hidden area of tblPart2 using JavaScript and give the impression that we freeze the columns in tblPart1. This will be accomplished using JavaScript.
ASP Panel control Optional. This will be used only if you want to be able to show or hide the entire objects.
divItems This DIV will be used for vertical scrollbar so we can give impression to the user that the header is frozen. We will do this using CSS.
TABLE tag To synchronize the position of tblPart1 and tblPart2.
tblPart1 This table will be container of the freezing columns. We will generate the rows later.
divPart2 This DIV is use to clip the view of tblPart2
tblPart2 This table is like tblPart1, but some of it's columns is hidden by divPart2. This table will be scrolled horizontally by divScroller. The header and rows will be generated later.
PlaceHolder1 Act as the container for the generated rows for tblPart1.
PlaceHolder2 Act as the container for the generated header and rows for tblPart2.
Table 1. Functional description of the objects

To freeze the header we can use the following CSS code:

tr.head
{
 position:relative; top: expression(document.all["divItems"].scrollTop-1); 
}

Building the horizontal scrollbar

To mimic IE scrollbar we can place a DIV tag inside a DIV tag. And resize both of them at run-time using JavaScript, this is done in ResizeTables() function.

 function ResizeTables()
 {         
  if (document.readyState)
  {  
       
   if (!document.all['divItems']) return;
   divItems.style.width = document.body.clientWidth-17;
   divItems.style.left = 0;        
       
   divPart2.style.width = document.body.clientWidth-155; 
   scroll1.style.width = divItems.style.width;
   scroll1.style.width = divItems.style.width;
   if(screen.width > 800)
    spacing1.style.width = tblPart2.offsetWidth+ tblPart1.offsetWidth;
   else
    spacing1.style.width = tblPart2.offsetWidth+ tblPart1.offsetWidth;          
           
   var AvailableHeight;
   AvailableHeight = 500;                
   divItems.style.height  = AvailableHeight;           
      
   divPart2.style.width = divItems.offsetWidth - tblPart1.offsetWidth-2;  
   
   if (parseInt(divPart2.style.width) + 
      tblPart1.offsetWidth < document.body.clientWidth )
   {  
    if (screen.width > 800)
    {              
     if(parseInt(divItems.style.height) < divPart2.offsetHeight)
     {                                                   
      divPart2.style.width = divItems.offsetWidth  -tblPart1.offsetWidth-19;
     }
    }
    else
    {
     if(parseInt(divItems.style.height) > divPart2.offsetHeight)
     {                         
      divPart2.style.width = divItems.offsetWidth -tblPart1.offsetWidth-2;
     }            
     else
     {
      divPart2.style.width = divItems.offsetWidth -tblPart1.offsetWidth-19;
     }           
    }

   }
  }
 }
 
 function OnScroll(sc)
 {  
  document.getElementById("divPart2").scrollLeft = sc.scrollLeft; 
 }         
 window.onload = ResizeTables;
 window.onresize = ResizeTables;

License

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

About the Author

irwansyah


Irwansyah is a web developer currently using ASP.Net. Irwansyah main interests lie in developing business application framework.

Irwansyah intends to work overseas one day and explore the world till the end of the world.
Occupation: Web Developer
Location: Indonesia Indonesia

Other popular ASP.NET Controls articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 12 of 12 (Total in Forum: 12) (Refresh)FirstPrevNext
GeneralVisit this article on freeze header/column - http://www.codeproject.com/useritems/FreezeHeader.aspmemberTittle Joseph0:01 11 May '06  
GeneralRe: Visit this article on freeze header/column - http://www.codeproject.com/useritems/FreezeHeader.aspmembersquattyarun8:26 16 Jun '08  
GeneralExcellantmembernimesh12311:03 1 Feb '06  
GeneralNot working for mememberhasnainlakhani0:13 24 Jun '05  
GeneralRe: Not working for mememberlinxuan22:03 27 Feb '06  
Generaldoesn't work for memembernewby6:56 7 Oct '04  
Generalgood articlememberwu_jian83017:25 4 Jul '04  
GeneralRe: good articlememberxiaofujian23:57 6 Jun '07  
Generalworks but jscript is slowmemberben5512410:33 1 Jun '04  
GeneralRe: works but jscript is slowmemberAnatoly Rapoport21:07 1 Jun '04  
GeneralRe: works but jscript is slowmemberirwansyah0:05 7 Jun '04  
AnswerRe: works but jscript is slowmemberMidi22:16 12 Sep '05  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 31 May 2004
Editor: Nishant Sivakumar
Copyright 2004 by irwansyah
Everything else Copyright © CodeProject, 1999-2008
Web07 | Advertise on the Code Project