When I click "Edit" on a row in a 1.1 datagrid, is there a way to set all the other rows to Visible=False or something along those lines. I'd like to hide all other rows. I don't want to post to another page for the edit since there are multiple filters on this page.
In the edit command for the datagrid I'm trying to do following, but no luck:
DataGrid1.EditItemIndex = e.Item.ItemIndex
If DataGrid1.EditItemIndex <> e.Item.ItemIndex Then
DataGrid1.ItemStyle.....something
End If
I've tried setting the font or height, but it's not making a difference.
In the edit command for the datagrid I'm trying to do following, but no luck:
DataGrid1.EditItemIndex = e.Item.ItemIndex
If DataGrid1.EditItemIndex <> e.Item.ItemIndex Then
DataGrid1.ItemStyle.....something
End If
I've tried setting the font or height, but it's not making a difference.