This seems simple but not as simple as i thought. I have the add/delete property enabled on the gridview. I used grid.rows.add() but failed to add a blank record. My gridview has a datasource that is a list of objects. How can i insert a new row at the end so that the user can type in the values for a new entry to later be inserted into a database by hitting a button?
grid.datasource = list of objects
grid.rows.add() or grid.rows.add(grid.rows.count + 1) (neither works)
Am i missing something here? The blank record is used for data to be inserted into the database so the row needs to match the object structure of the other rows also.
a | b | c | | <---new row for user to enter data per field; a,b,c
list of objects? – Steve Feb 28 at 21:20