有没有办法在 devexpress 网格中设置:某些行是只读的,而其他行是可编辑的?

发布于 2024-11-08 05:49:01 字数 136 浏览 4 评论 0原文

你好 有没有办法设置网格属性,以便某些行是只读的,而其他行是可编辑的? 例如,包含第 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦屿孤独相伴 2024-11-15 05:49:01

这可以使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文