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
Tweet
2 comments:
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