|
|
C#
protected void custGV_SelectedIndexChanged(object sender, EventArgs e)
{
custGV.Rows[custGV.SelectedIndex].Visible = false;
}
VB.NET
Protected Sub custGV_SelectedIndexChanged(ByVal sender As Object, ByVal e As EventArgs)
custGV.Rows(custGV.SelectedIndex).Visible = False
End Sub
'Like' us on our FaceBook page if you find this blog useful. Thanks!
Did you like this post?
|
|
|
||
|
|
|
|
Save on Delicious |
|
|
subscribe via rss |
|
subscribe via e-mail |
|
|
print this post |
|
follow me on twitter |




comments
2 Responses to "Hide the Selected Row in an ASP.NET GridView"i try to think of what case we can utilize this tips. I gave up. Anyone?
There can several reasons. We have programmed a Grid which serves as a report tool too. In this tool, users have the capability to look at only the rows that match a condition. They can either manually select and hide rows to view a filtered grid or use a combo to filter it.
Post a Comment