radGrid 添加新记录与编辑记录
有谁知道如何验证 radGrid 是否处于添加模式与编辑模式?在后面的代码中,我想检查用户是否选择了“添加记录”或“编辑现有记录”。
谢谢
Does anyone know how to validate if you are in Add Mode vs. Edit Mode for the radGrid? In the codebehind, I want to check to see if the user selected Add a Record or Edit an Existing.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在使用 RadGrid for ASP.NET AJAX 时学到的是:
- 主表的IsItemInserted属性可以帮助您确定是否处于插入模式
- 当 EditItems 或 EditIndexes 集合不为空时,网格项处于编辑状态
Dick
What I learned when playing with RadGrid for ASP.NET AJAX is:
- the IsItemInserted property of the master table can help you find out whether you are in insert mode or not
- the when EditItems or EditIndexes collections are not empty, you have grid items in edit state
Dick