Could someone post a working example of a gridview with all rows editable (like it was an excel) and list<type> as datasource?
We want to mantain the data the user inputs in the grid between postbacks (that may be generated by any control not only the submit one) and then get the data from the list or the gridview so we use it to insert or update different tables (this is not the typical case of 1:1 relation / grid:sqltable)
Also we have a dropdownlist (with autopostback) with numbers 1 to 9 that controls how many rows are used in the gridview, so if the users changes from 1 to 5 rows 4 new rows will be added to the gridview and if he changes from 8 to 5 rows the last 3 rows will be deleted...(mantaing the data currently inputed by the user)
Thanks beforehand