Hi Harry,
We can disable specific columns from providing value during editing or adding a row by disabling the ‘AllowEditing’ property of the column object . And we have included this property in Essential studio release versoin volume 3 ,2015 . So we suggest you to
upgrade to this Essential studio version .
You can download that setup from the below location
Download link: https://www.syncfusion.com/forums/120659/essential-studio-2015-volume-3-final-release-v13-3-0-7-is-available-for-download
Please find the below code example for more details,
.EditSettings(eve => {
eve.AllowEditing(true);
eve.EditMode(TreeGridEditMode.CellEditing);
})
.Columns(co => {
co.Field("StartDate").HeaderText("Start Date").AllowEditing(false).Add();
})
|
We have also prepared a sample for disable the specific editable columns. Please find the sample in the following location.
Sample: http://www.syncfusion.com/downloads/support/forum/120984/ze/TreeGridSample_MVC1910690808
Please let us know if you require further assistance on this.
Regards,
Jayakumar Duraisamy