更新时显示附加表单 - RadGrid
我正在使用 RadGrid 来更改记录状态。用户可以从下拉列表中选择状态并用该状态更新该记录。根据选择的状态,当用户单击更新时,我想弹出一个附加表单,以便用户可以填写更新所需的更多数据。我不确定实施此操作的最佳方法。任何建议表示赞赏。
I'm using a RadGrid for changing record status's. Users have the ability to select a status from a dropdown and update that record with that status. Depending on the status chosen, when the user clicks update I want to popup an additional form so the user can fill out more data required for the update. I'm not sure the best way to go about implementing this. Any suggestions are appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种方法是像模态一样使用 RadWindow,并通过客户端 JavaScript 将其弹出给用户。我们在应用程序中使用 RadWindows,它确实有效。或者,RadWindow 支持嵌套网格或视图,您可以将其作为记录的子项;因此,您可以拥有主记录,单击左侧的箭头并展开记录以查看嵌套的数据网格或自定义视图(通过 NestedViewTemplate 属性)。您还可以将表单放在 DIV 中,隐藏它,然后也通过 JavaScript 显示它。
这是两种方法。
HTH。
One way is to use the RadWindow like a modal and pop it up to the user via client-side JavaScript. We use RadWindows in our applications and it works. Or, the RadWindow supports a Nested Grid or View that you can have as a record's child; so you can have the master record, click on the arrow on the left and expand the record to view a nested grid of data, or a custom view (via the NestedViewTemplate property). You can also have the form in a DIV, hide it, then show it via JavaScript too.
Those are two ways.
HTH.