Click here to Skip to main content
15,885,954 members
Articles / Web Development / ASP.NET
Article

Change the GridView row color on click without postback

Rate me:
Please Sign up or sign in to vote.
4.17/5 (17 votes)
18 Mar 2008CPOL 161K   1.2K   31   23
Article about changing the GridView row color on mouse click without postback

Introduction

This article is about changing the color of a GridView row on mouse click without having a postback on the page. In order to achieve this we will be using some javascript and off course the GridView Control itself :).

Background

GridView is a server side control that contains Rows and Columns. In some cases we want to do something more than the straight forward functionality of the GridView control depending on the functional/UI requirements of the application.

Using the code

Following javascript will be used to change the color of the row.

JavaScript
   <script type="text/javascript">
   //variable that will store the id of the last clicked row
   var previousRow;

   function ChangeRowColor(row)
   {
       //If last clicked row and the current clicked row are same
       if (previousRow == row)
           return;//do nothing
       //If there is row clicked earlier
       else if (previousRow != null)
           //change the color of the previous row back to white
           document.getElementById(previousRow).style.backgroundColor = "#ffffff";

       //change the color of the current row to light yellow

       document.getElementById(row).style.backgroundColor = "#ffffda";
       //assign the current row id to the previous row id
       //for next row to be clicked
       previousRow = row;
   }
</script>

Following code will be required on GridView1_RowDataBound event

Protected Sub GridView1_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) _
    Handles GridView1.RowDataBound
    If (e.Row.RowType = DataControlRowType.DataRow) Then
        e.Row.Attributes.Add("onclick", "javascript:ChangeRowColor('" & e.Row.ClientID & "')")
    End If
End Sub

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
    If Not IsPostBack Then
        'FillDataTable is a function that will return a DataTable
        'with some values and is available in the code for download.
        Me.GridView1.DataSource = Me.FillDataTable()
        Me.GridView1.DataBind()
    End If
End Sub

Before clicking the row

After clicking the row

License

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


Written By
Web Developer
United Arab Emirates United Arab Emirates
Faraz is working as a Senior Software Engineer for a company located in Sharjah, UAE. He likes developing new applications with the latest technologies. Mostly reponsible for web applications using Microsoft.Net. He has done MCPD so far. Other than work play guitars, sing and play PSP.

Comments and Discussions

 
GeneralY? this Much Pain Use THE INBUILD COMMANDS OF ASP>NET Pin
RAKESH CHAUBEY25-Aug-12 7:33
RAKESH CHAUBEY25-Aug-12 7:33 
GeneralMy vote of 5 Pin
mhm36231-Oct-11 19:01
mhm36231-Oct-11 19:01 
GeneralMy vote of 4 Pin
linda mathew26-Mar-11 4:16
linda mathew26-Mar-11 4:16 
GeneralHandling Postbacks Pin
scottch15-Jun-10 5:18
scottch15-Jun-10 5:18 
Generalthanks Pin
adolfhardik9-Jun-10 20:08
adolfhardik9-Jun-10 20:08 
GeneralMy vote of 1 Pin
Saeed Alg23-Apr-10 23:38
Saeed Alg23-Apr-10 23:38 
Generalupdate PreviousRowColor Pin
Member 440165415-Apr-09 20:53
Member 440165415-Apr-09 20:53 
GeneralHi faraz Pin
VimalSaifudin26-Sep-08 19:40
VimalSaifudin26-Sep-08 19:40 
QuestionGreat Solution But How Do I Handle Postbacks? Pin
eggnturtle20-Sep-08 11:45
eggnturtle20-Sep-08 11:45 
AnswerRe: Great Solution But How Do I Handle Postbacks? Pin
farazsk1120-Sep-08 20:06
farazsk1120-Sep-08 20:06 
GeneralRe: Great Solution But How Do I Handle Postbacks? Pin
eggnturtle21-Sep-08 4:14
eggnturtle21-Sep-08 4:14 
GeneralGood work Pin
Member 41834088-Sep-08 19:05
Member 41834088-Sep-08 19:05 
GeneralRediculously simplistic Pin
Oakman5-Apr-08 12:40
Oakman5-Apr-08 12:40 
GeneralRe: Rediculously simplistic Pin
farazsk115-Apr-08 18:48
farazsk115-Apr-08 18:48 
GeneralRe: Rediculously simplistic Pin
Oakman6-Apr-08 1:24
Oakman6-Apr-08 1:24 
GeneralRe: Rediculously simplistic Pin
farazsk116-Apr-08 2:17
farazsk116-Apr-08 2:17 
GeneralMultiple Rows Pin
DigitalRacer4-Apr-08 11:56
DigitalRacer4-Apr-08 11:56 
GeneralRe: Multiple Rows Pin
farazsk115-Apr-08 18:44
farazsk115-Apr-08 18:44 
GeneralGood Work Pin
Irwan Hassan26-Mar-08 17:41
Irwan Hassan26-Mar-08 17:41 
GeneralRe: Good Work Pin
farazsk1127-Mar-08 15:43
farazsk1127-Mar-08 15:43 
Generalthanks Pin
jomet19-Mar-08 17:53
jomet19-Mar-08 17:53 
GeneralRe: thanks Pin
farazsk1120-Mar-08 6:37
farazsk1120-Mar-08 6:37 

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.