Posted 2 April 2020, 3:23 pm EST
I wanted to be able to disable certain rows from being able to be editable.
I tried the following, where I have a field called isDetail and I use the stopEditing when the status is beforeStartEditing. That doesnt seem to work
private editingDataView(sender: any, args: any): void {
if (args.oldItem.isDetail === false) { if (args.status === 'beforeStartEditing') { this.dataView.stopEditing(); } return; }