I need to turn all the columns in the selected row of a datagrid into
textboxcolumns, as to give the user an obvious choice of inputing data
via the keyboard. Anyone have any ideas?
In the OnEditClicked (or similar event handler function), you need to
set the edititemindex equal to the one supplied as an argument to the
event handler function. If in asp.net, and using simple BoundColumns,
you will get textboxes automatically. If you are using itemtemplates,
you may have to write int he text boxes.
If you are doing asp.net, you should really read through this series of
tutorials.
http://aspnet.4guysfromrolla.com/articles/040502-1.aspx
Thanks anyway.