C
Chris Brandsma
I'm thinking this is simple, but...
I added an Edit/Update/Cancel column to a DataGrid. Any time I hit the
edit/Update/Cancel button the grid returns blank (no rows returned but the
header and footer).
My EditCommand code looks like this (pretty simple):
DataGrid2.EditItemIndex = e.Item.ItemIndex;
DataGrid2.SelectedIndex = e.Item.ItemIndex;
DataGrid2.DataBind();
any ideas?
Thank you.
I added an Edit/Update/Cancel column to a DataGrid. Any time I hit the
edit/Update/Cancel button the grid returns blank (no rows returned but the
header and footer).
My EditCommand code looks like this (pretty simple):
DataGrid2.EditItemIndex = e.Item.ItemIndex;
DataGrid2.SelectedIndex = e.Item.ItemIndex;
DataGrid2.DataBind();
any ideas?
Thank you.