Hi, I'm looking for help disabling an entire rows edit abilities by using the value in one of the columns.
ex.
...
columns.Bound(p => p.releaseState).Title("Release State");
columns.Command(command => {command.Edit().Visible("isEditable(releaseState)");});
...
This does not work neither does isEditable(p.releaseState) or isEditable(Model.releaseState)...
Any help would be greatly appreciated.