Hi Asterinex,
Thanks for contacting Syncfuion support.
We have checked your query and while we change the property value from XAML, the property value changes is not notified from framework, so editing was not working while we set AllowEditing is false in Xaml. You can achieve your requirement by setting GridColumn.AllowEditing as False from code behind. Please refer the below code example:
|
public SfDataGridPage()
{
InitializeComponent();
dataGrid.Columns[1].AllowEditing = false;
} |
Regards,
Ashok