G
Glenn Owens
I have a DataGrid web control which I've dynamically populated with
template columns to be used for bulk-editting. Generally, all of the
columns are textbox and/or dropdownlist child controls.
Currently everything is working. I can find the updated rows/columns
by parsing the posted data collection against the DataGrid DataSource.
However, when there is a large amount of DataGridItems (rows) the
update processing can take a while.
What I'd like to do is to be able to, as changes are made, mark the
row as modified (in an invisible temaplate column which I'll add to
the DataGrid). That would provide a faster way to find modified rows
without the parsing.
My question:
Has anyone done this? What are some options? Because of viewstate size
concerns I'd prefer to go with a client-side (JavaScript) solution.
TIA
Glenn
template columns to be used for bulk-editting. Generally, all of the
columns are textbox and/or dropdownlist child controls.
Currently everything is working. I can find the updated rows/columns
by parsing the posted data collection against the DataGrid DataSource.
However, when there is a large amount of DataGridItems (rows) the
update processing can take a while.
What I'd like to do is to be able to, as changes are made, mark the
row as modified (in an invisible temaplate column which I'll add to
the DataGrid). That would provide a faster way to find modified rows
without the parsing.
My question:
Has anyone done this? What are some options? Because of viewstate size
concerns I'd prefer to go with a client-side (JavaScript) solution.
TIA
Glenn