Help please: trying to edit column in a datagrid

  • Thread starter Thread starter amine
  • Start date Start date
A

amine

Hi,

I would like to edit a row in the datagrid after it has
been loaded. I can remove and add a new row but I can't
figure out how to just edit an existing row.

I am also trying to figure out a way to add images to a
datagrid cell. any help is very appreciated


Thank you
 
See the DataColumn.ReadOnly property.
The grid allows only what the underlying dataview that is bound to it
allows.
If a specific column is ReadOnly=true you will not be able to edit it
in a datagrid
 
Back
Top