Dynamics AX 2012:在 AxGridView 编辑模式下,如何隐藏保存按钮
我有一个要求,必须在 AXGridView 的编辑模式下隐藏保存按钮。
我们怎样才能做到这一点?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我有一个要求,必须在 AXGridView 的编辑模式下隐藏保存按钮。
我们怎样才能做到这一点?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
使用网格AllowEdit属性 - 当您将其设置为 false 时,保存和取消按钮不会呈现。
如果您需要对所有行关闭它,请在标记中设置AllowEdit = false。
如果您需要根据某些运行时条件隐藏按钮,请订阅网格 OnSelectedIndexChanged 事件并设置AllowEdit。
标记:
代码隐藏:
Use the grid AllowEdit property - when you set it to false the save and cancel buttons do not render.
If you need it turned off for all rows set AllowEdit=false in the markup.
If you need to hide the buttons depending on some runtime condition, subscribe to the grid OnSelectedIndexChanged event and set AllowEdit.
Markup:
Code behind: