有没有办法在 devexpress 网格中设置:某些行是只读的,而其他行是可编辑的?
你好 有没有办法设置网格属性,以便某些行是只读的,而其他行是可编辑的? 例如,包含第 1 列、第 2 列和第 3 列的网格。 如果column1的值为“Red”,则整行是只读的,如果column1的值为除Red之外的其他值,则可编辑。我怎么能这样做呢?谢谢!
Hi
Is there a way to set the grid property so that some rows are readonly but others are editable?
e.g. a grid with column 1, column2, and column3.
if column1's value is "Red", then the whole row is readonly, is column1's value is other values except Red, it is editable. How could I do this? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可以使用 GridView 的 ShowingEditor 事件来完成。即,如果您想阻止编辑某个单元格,则只需将 e.Cancel 参数设置为 true 即可。更多详细信息,请参阅如何有条件地阻止个人编辑网格单元
This can be done using the GridView's ShowingEditor event. I.e. you should just set the e.Cancel parameter to true if you want to prevent a certain cell from being edited. For more details, please refer to the How to Conditionally Prevent Editing for Individual Grid Cells