How to make Telerik MVC Grid Column or cell readonly on edit mode?
There is a simple solution if you want to make a column or cell readonly and non editable when the grid is in edit mode in the Telerik MVC Grid .
columns.Bound(x => x.FullName).Width(120).ReadOnly();
Simply call the ReadOnly() function of telerik mvc grid. It works for me hope you'll got it too as well.
Comments
Post a Comment