hi,
I set up my datagrid control based on a command object in a data environment.
Everything displays nicely, except that I can't edit, add or delete anything.
Does anybody know why ?
thanks,
Maggie
Printable View
hi,
I set up my datagrid control based on a command object in a data environment.
Everything displays nicely, except that I can't edit, add or delete anything.
Does anybody know why ?
thanks,
Maggie
The DataGrid control is a Readonly control. To update it you need overlay the cell you wish to update with a textbox or some such control, Allow the user to change the textbox, then you mirror the change to the dataBase. refreshing the DataGrid should update the datagrid.
John G
Thank you very much. I misunderstood. I'll try doing that.
Maggie