Adding a new row in between rows in a grid view.

Posted by SARAVAN on Stack Overflow See other posts from Stack Overflow or by SARAVAN
Published on 2010-06-08T20:06:28Z Indexed on 2010/06/08 20:42 UTC
Read the original article Hit count: 175

Filed under:
|
|

I have an ASP .net grid view. It has some template columns like a command button, a text box, and a dropdown control. When I click the command button, a new row needs to be inserted below the current row (from where I hit the command button).

If I have rows 1 and 2 and I hit the command button in row1 a new row needs to be inserted between rows 1 and 2

Now in the new row I should be able to select values from dropdown and enter some value in a text box and finally hit my save button. (Which should work fine as I am expecting)

The grid view is bound to some data source say for instance a datatable for now.

Oneway that I could think about is when Command button is clicked, I can add a new row to the datatable in my server side code and rebind the grid. But I am not sure that, from a UI perspective how I can make sure that the new row goes exactly below the row from where I hit the command button.

Any thoughts or comments?

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about view