带有自定义按钮的 GridView

发布于 2024-10-17 20:38:18 字数 262 浏览 1 评论 0原文

具体来说,我将 DevExpress 10.1 用于他们的 APSxGridView。我有一个带有命令列的网格。我计划使用其中两个标准:新建和编辑。我想创建一个自定义按钮,该按钮将从当前行中获取一个值,并使用该值作为查询字符串的一部分重定向到另一个页面。

我看到了一些创建超链接列来执行此操作的建议,但我希望将所有这些命令放在一个列中。如果我不受将所有按钮保留在一列中的限制,我可以看到解决方案。这是我可以在 HtmlDataCellPrepared 期间分配的东西吗?

谢谢。

Specifically, I am using DevExpress 10.1 for their APSxGridView. I have a grid with a command column. I plan on using two of the standards: new and edit. I would like to create a custom button that will take a value from within the current row and redirect to another page using that value as part of the query string.

I have seen some suggestions to create a hyperlink column to do this, but I would like to have all of these commands in a single column. I can see solutions for this if I weren't constrained by leaving all buttons within a single column. Is this something that maybe I could assign during HtmlDataCellPrepared?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

月亮坠入山谷 2024-10-24 20:38:18

如果它与标准 .net GridView 类似,我会创建一个模板字段。在模板字段中,您可以放置​​任何您想要的内容。当我需要一个 ASP.NET 控件(按钮、超链接等)而不是标准网格按钮和命令时,我就这样做了。然后,您可以在 OnRowDataBound 事件处理程序期间访问控件和数据源,并根据需要在运行时自定义按钮。

If it's anything like the standard .net GridView I would create a template field. In a template field you can put whatever you want in there. I have done this when I need an asp.net control (a button, hyperlink, etc) instead of the standard grid buttons and commands. You can then access controls and the datasource during the OnRowDataBound event handler and customize the button during run time if need be.

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