I have a kendo grid using ASP.NET MVC wrappers and has multiple columns (say col 1 and 2). The grid is set to InCell editing mode. Columns 1, 2 need to be able to be edited (or preventing editing) based off the values of each other for a specific row.
For instance, if column 1 value is true then column 2 is allowed to be edited. if column 2 value is false, then column 2 is not allowed to be edited.
Any ideas?
I found similar example but using client side extensions.
When editing a grid, how do I disable specific fields by row?
Is there a similar way to do it using ASP.Net MVC wrappers?