Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用devexpress MVC网格视图模式时如何禁用列编辑是内联编辑
尝试在部分视图中为您的列添加只读属性:
settings.Columns.Add(column => { column.FieldName = "MyField"; column.ReadOnly = true; });