Click here to Skip to main content
15,884,628 members
Articles / Web Development / XHTML
Article

Hover Effects for GridView Rows Using CSS

Rate me:
Please Sign up or sign in to vote.
4.36/5 (42 votes)
11 May 2008CPOL2 min read 315.4K   5.3K   81   42
This article describes how to apply hover effects on GridView rows using CSS.

Introduction

Last week, I learned a technique of applying a hover effect to an HTML table’s rows with the help of pure CSS, without using a single line of JavaScript code. Great! Isn’t it? Before that, I’ve been doing this using JavaScript, as in my previous article: Hotmail-like Mouse Over and Mouse Out Effects on GridView. I thought it might be interesting to implement this technique on a GridView in order to create a hover effect on the GridView rows. So, I’ve quickly created a sample application and decided to share it. Below is the implementation details of this technique for applying hover effect to GridView rows using CSS.

The GridView HTML Code

The HTML code for the GridView in this article will looks like:

ASP.NET
<asp:GridView ID="gvHover" BackColor="WhiteSmoke" runat="server" AutoGenerateColumns="False"
              GridLines="Vertical" CssClass="grid-view" OnRowCreated="gvHover_RowCreated">
   <Columns>
      <asp:BoundField HeaderText="n" DataField="n">
         <HeaderStyle Width="25px" />
         <ItemStyle Width="25px" />
      </asp:BoundField>
      <asp:BoundField HeaderText="sqrt(n)" DataField="sqrtn">
         <HeaderStyle Width="150px" />
         <ItemStyle Width="150px" />
      </asp:BoundField>
      <asp:BoundField HeaderText="qbrt(n)" DataField="qbrtn">
         <HeaderStyle Width="150px" />
         <ItemStyle Width="150px" />
      </asp:BoundField>
   </Columns>
</asp:GridView>

Styling the GridView

In order to style the Gridview, attach a CSS class to it, like so:

ASP.NET
<asp:GridView ... CssClass="grid-view" ... > ... </asp:GridView>

Styling the GridView’s Header Row, Normal Row, and Alternate Row

In order to style the GridWiew’s header, normal, and alternate rows, attach the CSS classes to these rows through the RowCreated event of the GridView, as:

C#
//Add CSS class on header row.
if (e.Row.RowType == DataControlRowType.Header)
   e.Row.CssClass = "header";

//Add CSS class on normal row.
if (e.Row.RowType == DataControlRowType.DataRow && 
          e.Row.RowState == DataControlRowState.Normal)
   e.Row.CssClass = "normal";

//Add CSS class on alternate row.
if (e.Row.RowType == DataControlRowType.DataRow && 
          e.Row.RowState == DataControlRowState.Alternate)
   e.Row.CssClass = "alternate";

The CSS Classes

Below are the CSS classes that have been used above to style the GridView and its header, normal, and alternate rows:

HTML
.grid-view
{
   padding: 0;
   margin: 0;
   border: 1px solid #333;
   font-family: "Verdana, Arial, Helvetica, sans-serif, Trebuchet MS";
   font-size: 0.9em;
}

.grid-view tr.header
{
   color: white;
   background-color: #FF5600;
   height: 25px;
   vertical-align: middle;
   text-align: center;
   font-weight: bold;
}

.grid-view tr.normal
{
   color: black;
   background-color: #FDC64E;
   height: 25px;
   vertical-align: middle;
   text-align: center;
}

.grid-view tr.alternate
{
   color: black;
   background-color: #D59200;
   height: 25px;
   vertical-align: middle;
   text-align: center;
}

Adding a Hover Effect to the GridView rows

Finally, to apply the hover effect to the GridView rows, the following CSS is used:

HTML
.grid-view tr.normal:hover, .grid-view tr.alternate:hover
{
   background-color: white;
   color: black;
   font-weight: bold;
}

Note that the hover effect has been applied to the normal and alternate rows only, not on the header row. You can also use different color schemes for the normal and alternate rows separately, for the hover effect.

Using the CSS Classes

Put all the corresponding CSS classes in a stylesheet and give its reference on the web page’s head section, as:

HTML
<link href="StyleSheet.css" rel="stylesheet" type="text/css" />

Conclusion

That’s all about this technique. Just download the sample application and happy CSS! I have tested this application on various browsers and it worked fine. Below is the list of those browsers:

Browsers.png

License

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


Written By
Technical Lead Infogain India Pvt Ltd
India India


Samir NIGAM is a Microsoft Certified Professional. He is an insightful IT professional with results-driven comprehensive technical skill having rich, hands-on work experience n web-based applications using ASP.NET, C#, AJAX, Web Service, WCF, jQuery, Microsoft Enterprise Library , LINQ, MS Entity Framework, nHibernate, MS SQL Server & SSRS.



He has earned his master degree (MCA) from U.P. Technical University, Lucknow, INDIA, his post graduate dipoma (PGDCA ) from Institute of Engineering and Rural Technology, Allahabad, INDIA and his bachelor degree (BSc - Mathematics) from University of Allahabad, Allahabad, INDIA.



He has good knowledge of Object Oriented Programming, n-Tier Architecture, SOLID Principle, and Algorithm Analysis & Design as well as good command over cross-browser client side programming using JavaScript & jQuery,.



Awards:



Comments and Discussions

 
GeneralMy Reason for Rate 4 Pin
Member 1096742920-Oct-14 19:48
Member 1096742920-Oct-14 19:48 
GeneralMy vote of 5 Pin
Chris Hoch30-Aug-14 13:50
Chris Hoch30-Aug-14 13:50 
QuestionHow to call style on hover evernt of the grid view in asp.net 4.0 Pin
Harishankar Maurya20-Mar-14 0:23
Harishankar Maurya20-Mar-14 0:23 
GeneralMy vote of 3 Pin
Shaileshcall428-Dec-12 23:44
Shaileshcall428-Dec-12 23:44 
GeneralMy vote of 4 Pin
gajendra bahakar7-Oct-11 20:25
gajendra bahakar7-Oct-11 20:25 
GeneralGood work Samir. Pin
Bo Vistisen29-Dec-09 0:46
Bo Vistisen29-Dec-09 0:46 
GeneralRe: Good work Samir. Pin
Samir NIGAM29-Dec-09 17:14
Samir NIGAM29-Dec-09 17:14 
GeneralMy vote of 1 Pin
Daniel Nutu7-Oct-09 22:15
Daniel Nutu7-Oct-09 22:15 
GeneralRe: My vote of 1 Pin
Samir NIGAM29-Dec-09 17:08
Samir NIGAM29-Dec-09 17:08 
Questionadding a hover effect to an ImageButton control Pin
LMRT0926-Aug-09 11:47
LMRT0926-Aug-09 11:47 
AnswerRe: adding a hover effect to an ImageButton control Pin
Bo Vistisen29-Dec-09 1:33
Bo Vistisen29-Dec-09 1:33 
GeneralMy vote of 1 Pin
Hemant0266-Aug-09 2:35
Hemant0266-Aug-09 2:35 
GeneralRe: My vote of 1 Pin
Samir NIGAM29-Dec-09 17:06
Samir NIGAM29-Dec-09 17:06 
GeneralGreat work Pin
grantmasterb3-Jul-09 8:32
grantmasterb3-Jul-09 8:32 
GeneralRe: Great work Pin
Samir NIGAM3-Jul-09 19:51
Samir NIGAM3-Jul-09 19:51 
GeneralGood work samir Pin
deepak_rai6-Mar-09 20:04
deepak_rai6-Mar-09 20:04 
GeneralRe: Good work samir Pin
Samir NIGAM8-May-09 18:00
Samir NIGAM8-May-09 18:00 
Generalok good Pin
ahlawy420-Jan-09 0:44
ahlawy420-Jan-09 0:44 
GeneralRe: ok good Pin
Samir NIGAM8-May-09 18:00
Samir NIGAM8-May-09 18:00 
GeneralStyling the GridView’s Header Row, Normal Row, and Alternate Row Pin
alexey.nayda26-Aug-08 1:05
alexey.nayda26-Aug-08 1:05 
GeneralRe: Styling the GridView’s Header Row, Normal Row, and Alternate Row Pin
Samir NIGAM8-May-09 18:02
Samir NIGAM8-May-09 18:02 
QuestionHow to select a row by a simple mouse click? Pin
Member 18125392-Jul-08 23:23
Member 18125392-Jul-08 23:23 
AnswerRe: How to select a row by a simple mouse click? Pin
Samir NIGAM3-Jul-08 18:22
Samir NIGAM3-Jul-08 18:22 
Generalwhy use code behind page to attach CSS class Pin
Mohm'ed Melhem10-Jun-08 19:00
professionalMohm'ed Melhem10-Jun-08 19:00 
GeneralRe: why use code behind page to attach CSS class Pin
Samir NIGAM10-Jun-08 20:57
Samir NIGAM10-Jun-08 20: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.