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

Datagrid custom control to change the row color on Mouse Over event

Rate me:
Please Sign up or sign in to vote.
3.86/5 (14 votes)
24 May 20041 min read 184.8K   2.9K   52   17
Datagrid control with mouse over event to change the row color as Code Project

Image 1

Introduction

This article describes another DataGrid control. Datagrids are very flexible, this one just inherits from the class DataGrid and adds the mouse over event to change the color of the row as the Code Project tables. Got the idea from Chris Maunder tables on Code Project. I looked at his JavaScript and I implemented into the .NET DataGrid class.

Using the code

This is a customer control. I include the source code for the control and a test project how to use it. As any customer control, you need to add the reference to the project. On the ASPX page:

ASP.NET
(...)
< MOD:MODataGrid> id="DataGrid1" style="Z-INDEX: 101; 
  LEFT: 320px; POSITION: absolute; TOP: 136px"
  runat="server"></ MOD:MODataGrid>

On the aspx.cs file add:

C#
protected MouseOverDataGrid.MODataGrid DataGrid1;

I used the Datagrid tutorial example from http://asp.net for the test project

The Control

A simple Inherit from Datagrid class and overriding the Render function with Chris Maunder JavaScript. There are 2 public properties, the SpecialLinkColor as default set to CodeProject mouseover color that you can set to any color you like. And OverLinkHand to display the cursor as a Hand. I did not implement the method for on-click but it is on the JavaScript, so you can always implement it.

C#
 [assembly:TagPrefix("MouseOverDataGrid", "MOD")]
namespace MouseOverDataGrid
{
 /// <summary>
 /// Summary description for MouseOverDataGrid.
 /// </summary>
 public class MODataGrid : System.Web.UI.WebControls.DataGrid
 {  

  [Category("Design"), Description("OverLink Color")]
  private string sBackgroundColor = "#dddddd";
  public string SpecialLinkColor
  {
   get{return(sBackgroundColor);}
   set{sBackgroundColor=value;}
  }

  [Category("Design"), Description("OverLink Hand Type")]
  private bool bOverLinkHand = false;
  public bool OverLinkHand
  {
   get{return(bOverLinkHand);}
   set{bOverLinkHand=value;}
  }

  protected override void Render(System.Web.UI.HtmlTextWriter writer)
  {
   string sDataGridID = this.ID.ToString();

   string sCursor = "";
   if ( OverLinkHand == true )
    sCursor = "elm.style.cursor = Cursor;\r";

   string sJavaScript = "< script language='\"javascript\"'>\r" +
    "function ShowRow1(elm, BgColour, FgColour)\r" +
    "{\r" +
    "elm.bgColor = BgColour;\r" + sCursor +
    "}\r" +
    "function HilightRow(elm, hover, highlight)\r" +
    "{\r" +
    " var BgColour = (hover)? \"" + SpecialLinkColor + "\" :  \"white\";\r" +
    " var FgColour = \"black\";\r" +
    " var Cursor   = (hover)? \"hand\" :  \"auto\";\r" +
    " ShowRow1(elm, BgColour, FgColour);\r" +
    " return false;\r" +
    "}\r" +
    "function RowOn()  { return HilightRow(this, true, false);  }\r" +
    "function RowOff() { return HilightRow(this, false, false); }\r" +
    "function RowClick()\r" +
    "{\r" +
    " HilightRow(this, false, true);\r" +
    " var elm = eval('document.getElementById(\"' + this.name + '_link\")');\r" +
    " if (elm) elm.click();\r" +
    " return true;\r" +
    "}\r" +
    "var table = document.getElementById(\"" + sDataGridID + "\");\r" +
    "var rows = table.getElementsByTagName(\"tr\");\r" +
    "for (var i = 0; i < rows.length; i++) {\r" +
    "rows[i].onmouseover = RowOn;\r" +
    "rows[i].onmouseout  = RowOff;\r" +
    //"rows[i].onclick     = RowClick;" +
    "}\r</script>\r";
  


   base.Render (writer);   
   base.Page.Response.Write(sJavaScript);
  }

 }

Points of Interest

For the Datagrid to work you have to make sure you do not add any color on the item background. If you are using paging, add same color in the footer.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
Al is just another Software Engineer working in C++, ASp.NET and C#. Enjoys snowboarding in Big Bear, and wait patiently for his daughters to be old enough to write code and snowboard.

Al is a Microsoft ASP.NET MVP

Blog

Comments and Discussions

 
QuestionHow to implement paging in your Datagrid custom control Pin
Member 87969723-Feb-05 1:09
Member 87969723-Feb-05 1:09 
GeneralAnother Implementation Pin
joshga119-Jul-04 5:50
joshga119-Jul-04 5:50 
GeneralRe: Another Implementation Pin
joshga119-Jul-04 6:15
joshga119-Jul-04 6:15 
Sorry for the extra thread.

CodeProject's servers was really slow and I posted it twice by accident.

Smile | :)

< The Code Provider />
GeneralAnother Implementation Pin
joshga119-Jul-04 5:18
joshga119-Jul-04 5:18 
GeneralSeems awful complicated for such a simple task Pin
ShamusFu16-Jul-04 7:34
ShamusFu16-Jul-04 7:34 
GeneralAnother Approach Pin
Brian Nash16-Jul-04 5:18
Brian Nash16-Jul-04 5:18 
GeneralRe: Another Approach Pin
Brian Nash16-Jul-04 5:21
Brian Nash16-Jul-04 5:21 
GeneralRe: Another Approach Pin
ttestingonly16-Jul-04 8:15
ttestingonly16-Jul-04 8:15 
Questionif used two controls,how to? Pin
linhaiyuan27-Jun-04 19:29
linhaiyuan27-Jun-04 19:29 
GeneralHandle right click Pin
enjoycrack16-Jun-04 16:00
enjoycrack16-Jun-04 16:00 
GeneralEnter key to work like tab key Pin
rags2-Jun-04 3:34
rags2-Jun-04 3:34 
GeneralRe: Enter key to work like tab key Pin
jbrink500028-Jun-06 15:26
jbrink500028-Jun-06 15:26 
GeneralWhy separate control Pin
Bee Master24-May-04 19:47
Bee Master24-May-04 19:47 
GeneralRe: Why separate control Pin
zaf24-May-04 23:03
zaf24-May-04 23:03 
GeneralRe: Why separate control Pin
pmpjr3-Jun-04 6:36
pmpjr3-Jun-04 6:36 
GeneralRe: Why separate control Pin
Albert Pascual25-May-04 5:19
sitebuilderAlbert Pascual25-May-04 5:19 
GeneralRe: Why separate control Pin
spvarapu25-May-05 0:51
spvarapu25-May-05 0:51 

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.