Could any one tell me that how can I update an editable grid with dropdown list as template field for the dynamically created collumns.
Update Of A Editable Grid
Collapse
X
-
Hai,,
U hav to use Gridview's Rowdatabound event In that
If e.row.rowstate = normal then
Add ur dynamic Control Creation here and
e.row.Cells(ind ex).Controls.Ad d(Created control)
Endif
If e.row.rowstate = Edititem then
Add ur dynamic Control Creation here and
e.row.Cells(ind ex).Controls.Ad d(Created control)
Endif
And so on..
Hope it will help u
Comment