Is there a way to tie the AllowEdit field for each Field to each Column record in the xamdatagrid as an example below:
Y = editable and N = not editable
First Name Last Name SS
N N Y
Y N N
Is there any examples that can show this?Jeff
Thanks for the advice. We were able to resolve.
Hello Jeffrey,
I am just checking the progress on your issue.
Please let me know if you require any further assistance on the matter.
Sincerely,
Krasimir
Developer Support Engineer
Infragistics, Inc.
www.infragistics.com/support
It is possible to control whether or not a specific cell to enters in edit mode or not. You can do that by handling EditModeStarting of your XamDataGrid. In the event handler of this event you can get cell’s value with c.Cell.Value and then check if you want to allow this cell to be editable and if not to cancel the event by setting e.Cancel = true.
Please let me know if this is what you needed and if you require any further assistance on the matter