Click here to Skip to main content
15,880,469 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi,

I am using a gridview in which we select a row,when we select the row then its color changed and which row is not selected that color different on rowcommand.


pls help me

my code is:
C#
int intRowindex = int.Parse(e.CommandArgument.ToString()) - 1;
            GridViewRow selectedrow = grdRawDevice.Rows[intRowindex];
            selectedrow.BackColor = System.Drawing.Color.Aqua;
            pnlSite.Visible = true;
            hfIndex.Value = intRowindex.ToString();
            lblDeviceID = (Label)grdRawDevice.Rows[intRowindex].FindControl("lbl_deviceID");
            FillData();
Posted
Updated 3-Apr-12 20:45pm
v2
Comments
Prasad_Kulkarni 4-Apr-12 2:52am    
..and problem is??
deepa5 4-Apr-12 2:57am    
problem is that when we select first row then its color changed but when select another row then how to first row color change??

1 solution

so for this you need to store the previous rowindex , i suggest you to save data in viewstate check the code

public int selectedroindex
{
 get
 {
    if(ViewState["selectedroindex"]!=null)
      return (int)ViewState["selectedroindex"];
    else 
      return -1;
 }
  set
 {
    ViewState["selectedroindex"]= value;
 }
}

after you do this just restore color back for the previous row before changing selected row color

C#
GridViewRow prevselectedrow = grdRawDevice.Rows[intRowindex];
prevselectedrow.BackColor = System.Drawing.Color.white;//set to orignal colur

int intRowindex) = int.Parse(e.CommandArgument.ToString()) - 1;
            GridViewRow selectedrow = grdRawDevice.Rows[intRowindex];
            selectedrow.BackColor = System.Drawing.Color.Aqua;
            pnlSite.Visible = true;
            hfIndex.Value = intRowindex.ToString();
            lblDeviceID = (Label)grdRawDevice.Rows[intRowindex].FindControl("lbl_deviceID");
            FillData();
 
Share this answer
 

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900