Column name Invisible
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
Hi, I have a grid view I am trying to invisible the fifth column. The rows are now not showing any data in column but the column name is still showing. I want to make invisible column name also. if (e.Row.RowType == DataControlRowType.DataRow ) { e.Row.Cells[5].Visible = false; }
seema
-
Hi, I have a grid view I am trying to invisible the fifth column. The rows are now not showing any data in column but the column name is still showing. I want to make invisible column name also. if (e.Row.RowType == DataControlRowType.DataRow ) { e.Row.Cells[5].Visible = false; }
seema
hi just write gridviewname.columns[index].Visible = false; ex: dvPOSelection.Columns[4].Visible = false;
k.ravi sankar