loading gridview in edit mode with a blank row at top of data source?

  • Thread starter Thread starter jobs at webdos
  • Start date Start date
J

jobs at webdos

Loading gridview in edit mode with a blank row at top of data source?

I'd like to have a button that when selected will rebind my gridview to
a blank row + the original datasource in edit mode on that first blank
row. Is this possible using vb.net codebehind?

Thanks.
 
some clues I have found:

GridViewRow newRow = GridViewx.CreateRow(0, 0, 1, 2)
GridViewx.DataBind()
set gridviewx.EditIndex to the NewEditIndex of the
GridViewEditEventArgs

Not working and not sure or how????
 
Back
Top