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

Using JavaScript To Select GridView Rows

Rate me:
Please Sign up or sign in to vote.
4.72/5 (100 votes)
22 May 2007CPOL3 min read 447.7K   5.1K   166   93
Using JavaScript To Select GridView Rows
Image 1

Contents

Introduction

If you have ever used the ASP.NET GridView control (I have only just started learning ASP.NET, so please forgive me, if I get some of the names of things slightly wrong), you will know that the user is able to select rows within the grid. While this is a great feature of the GridView control, you would normally have to select a row using a CommandField or a hyperlink column with a CommandName="Select" property included. This, I think just looks a bit naff.

Surely, there is a better way. Well luckily there is, we can simply use client side JavaScript to do the row selection. That is what this article is all about. The code is minimal, and very easy to understand, but I think it is useful code, and I also think it is something that anyone that works with the GridView control should know.

Sample Table Used

I am actually using Microsoft SQL Server 2005, with the attached DEMO app. You will need to change the Web.Config file to point to your own SQL Server installation. For the GridView data I have chosen to use the master database, dbo.spt_values table, that comes with SQL Server 2005

The master table structure, and the query that the demo app uses are as follows:

Image 2

How It Works

It's very easy actually, all we do is use a <asp:SqlDataSource/> web control to bind to the master database (remember you'll need to change the connection section in the web.config to point at your own database). The GridView data is obtained using a simple select statement SELECT TOP 5 * FROM dbo.spt_values table, and then have the GridView control use this <asp:SqlDataSource/>. Then we include a <asp:CommandField ShowSelectButton="True" Visible="False" /> field which we set to be invisible.

One more point to note is that the Page must have the following directive set in order to allow the JavaScript postback mechanism that is described below.

So in the page declarations section, ensure the following is set EnableEventValidation="false"

So that's the ASPX file (web form), but we also need to write some code in the code behind and use a little bit of JavaScript. So the code behind (C# for the attached demo) looks like :

C#
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class grid : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }

    /// <summary>
    /// Check the item being bound is actually a DataRow, if it is,     
    /// wire up the required html events and attach the relevant JavaScripts
    /// </summary>
    /// <param name="sender">GridView1</param>
    /// <param name="e">The event args for the RowDataBound event</param>
    protected void GridView1_RowDataBound(object sender, 
                    GridViewRowEventArgs e)
    {
        //check the item being bound is actually a DataRow, if it is, 
        //wire up the required html events and attach the relevant JavaScripts
        if (e.Row.RowType == DataControlRowType.DataRow)
        {
            e.Row.Attributes["onmouseover"] = 
                "javascript:setMouseOverColor(this);";
            e.Row.Attributes["onmouseout"] = 
                "javascript:setMouseOutColor(this);";
            e.Row.Attributes["onclick"] = 
            ClientScript.GetPostBackClientHyperlink
                (this.GridView1, "Select$" + e.Row.RowIndex);
        }
    }

    /// <summary>
    /// Show the 1st cell value in the web pages TextBox to show the user
    /// it is actually selecting rows at client side
    /// </summary>
    /// <param name="sender"> GridView1</param>
    /// <param name="e">The event args for the SelectedIndexChanged event
    ///    </param>
    protected void GridView1_SelectedIndexChanged(object sender, EventArgs e)
    {
        TextBox1.Text = GridView1.SelectedRow.Cells[1].Text;
    }
}

This works by attaching 2 JavaScripts to the current GridView row.

  • One for onmouseover which simply sets the current row to be highlighted a certain color. I chose Yellow, but you can change that.
  • One for onmouseout which simply resets the current row to be the original color

There is also a clever line as given below:

JavaScript
e.Row.Attributes["onclick"] = ClientScript.GetPostBackClientHyperlink
                (this.GridView1, "Select$" + e.Row.RowIndex);

This cunningly creates a client hyperlink which posts back the current ASPX web form, using the Select$0 to select row 0 say.

The ASPX pages JavaScript is as follows:

JavaScript
<script language="javascript" type="text/javascript">
var oldgridSelectedColor;

function setMouseOverColor(element)
{
    oldgridSelectedColor = element.style.backgroundColor;
    element.style.backgroundColor='yellow';
    element.style.cursor='hand';
    element.style.textDecoration='underline';
}

function setMouseOutColor(element)
{
    element.style.backgroundColor=oldgridSelectedColor;
    element.style.textDecoration='none';
}
</script>

And that's it. So what we get is now a nice GridView control, that we select rows with using JavaScript, and it looks like a table, rather than a table plus some nasty SELECT button, or a hyperlink column (that is only being used as a row selection method anyway).

Image 3

That's it

And that as they say is that. Simple wasn't it. Probably my most simple article yet. But I think it's a useful one, I have always wondered how my online bank did produced such a nice grid.

So What Do You Think ?

I would just like to ask, if you liked the article please vote for it, and leave some comments, as it lets me know if the article was at the right level or not, and whether it contained what people need to know.

Conclusion

Well that's it actually. Although the code is very simple, I'm sure you'll agree this JavaScript selection method sure looks better than having a button column, or a hyperlink column to do the row selection. And it's more intuitive, I think. The users simply point and click the row they want, job done.

History

  • v1.0 - 22/05/07

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)
United Kingdom United Kingdom
I currently hold the following qualifications (amongst others, I also studied Music Technology and Electronics, for my sins)

- MSc (Passed with distinctions), in Information Technology for E-Commerce
- BSc Hons (1st class) in Computer Science & Artificial Intelligence

Both of these at Sussex University UK.

Award(s)

I am lucky enough to have won a few awards for Zany Crazy code articles over the years

  • Microsoft C# MVP 2016
  • Codeproject MVP 2016
  • Microsoft C# MVP 2015
  • Codeproject MVP 2015
  • Microsoft C# MVP 2014
  • Codeproject MVP 2014
  • Microsoft C# MVP 2013
  • Codeproject MVP 2013
  • Microsoft C# MVP 2012
  • Codeproject MVP 2012
  • Microsoft C# MVP 2011
  • Codeproject MVP 2011
  • Microsoft C# MVP 2010
  • Codeproject MVP 2010
  • Microsoft C# MVP 2009
  • Codeproject MVP 2009
  • Microsoft C# MVP 2008
  • Codeproject MVP 2008
  • And numerous codeproject awards which you can see over at my blog

Comments and Discussions

 
GeneralNot happy with select Pin
esb779-Nov-14 13:26
esb779-Nov-14 13:26 
GeneralMy vote of 5 Pin
Orcun Iyigun13-May-13 10:12
Orcun Iyigun13-May-13 10:12 
QuestionMy Vote is 5 Pin
anglo007218-Nov-12 22:46
anglo007218-Nov-12 22:46 
AnswerRe: My Vote is 5 Pin
Herbisaurus15-Aug-13 2:45
Herbisaurus15-Aug-13 2:45 
GeneralMy vote of 2 Pin
enkhtuvshinbat12-Sep-12 19:45
enkhtuvshinbat12-Sep-12 19:45 
Questionusing Up down arrow keys to select the Gridview asp.net 3.5 Pin
Faiz_Khan21-Jun-12 18:25
Faiz_Khan21-Jun-12 18:25 
GeneralMy vote of 5 Pin
nebulaqueen5-Apr-12 5:22
nebulaqueen5-Apr-12 5:22 
Questionrow highlighted Pin
Mike_0411-Feb-12 21:35
Mike_0411-Feb-12 21:35 
Question__doPostBack Pin
pdusp31-Jan-12 23:09
pdusp31-Jan-12 23:09 
GeneralMy vote of 5 Pin
Ernesto Tejeda15-Oct-11 16:05
Ernesto Tejeda15-Oct-11 16:05 
GeneralMy vote of 5 Pin
anurag129011-Oct-11 1:14
anurag129011-Oct-11 1:14 
QuestionLess risky code Pin
nebojsa1623-Sep-11 7:45
nebojsa1623-Sep-11 7:45 
GeneralMy vote of 2 Pin
Ramesh_495925-Jun-11 22:42
Ramesh_495925-Jun-11 22:42 
Questiongood but with sequrity Risk Pin
Ramesh_495925-Jun-11 22:41
Ramesh_495925-Jun-11 22:41 
AnswerRe: good but with sequrity Risk Pin
nebojsa1623-Sep-11 7:40
nebojsa1623-Sep-11 7:40 
QuestionError Message Pin
neilderama21-Jun-11 15:41
neilderama21-Jun-11 15:41 
AnswerRe: Error Message Pin
Herbisaurus15-Aug-13 2:46
Herbisaurus15-Aug-13 2:46 
GeneralMy vote of 5 Pin
ahsan sarfraz6-Dec-10 18:56
ahsan sarfraz6-Dec-10 18:56 
GeneralMy vote of 5 Pin
jasonHall30-Nov-10 17:07
jasonHall30-Nov-10 17:07 
QuestionGreat! Pin
bertvaes22-Nov-10 2:28
bertvaes22-Nov-10 2:28 
Generalgreat article Pin
kamalRafi8-Oct-10 21:58
kamalRafi8-Oct-10 21:58 
GeneralMy vote of 5 Pin
Jason Sheridan15-Sep-10 3:52
Jason Sheridan15-Sep-10 3:52 
GeneralNice Pin
digsourse16-Dec-09 21:28
digsourse16-Dec-09 21:28 
GeneralThanks Pin
Nitin S4-Aug-09 0:58
professionalNitin S4-Aug-09 0:58 
GeneralEnableEventValidation="false" Pin
worko26-Apr-09 2:45
worko26-Apr-09 2:45 

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.