DataGrid or GridView
-
row highlight on mouse over and undoing it mouse out is working f9...when we do mouse over we change only back color, whether is it possible to change both fore n back color or even font in code behind or javascript?
-
row highlight on mouse over and undoing it mouse out is working f9...when we do mouse over we change only back color, whether is it possible to change both fore n back color or even font in code behind or javascript?
write code in the GridView1_RowCreated event. If e.Row.RowType = DataControlRowType.Header Then 'write code for the grid header only else 'write code for rest of the rows you can customize every column from here. e.Row.Cells(0).CssClass = "style1" End If from style you can change anything forecolor, backcolor, font, font size ... anything... The miracle is this--the more we share, the more we have.