如何访问 Telerik 网格中当前行的数据?
我有一个网格,并说我在给定的 telerik:GridTemplateColumn (或 GridboundColumn?)中,我想显示其他 2 列的结果,我该怎么做?
在 asp.net 转发器中我可以这样做:
<%# Container.DataItem("Col3") %> <%# Container.DataItem("Col4") %>
我该如何在 Telerik 网格中做到这一点?
I have a grid, and say I am in given telerik:GridTemplateColumn (or GridboundColumn?) I want to display the result of 2 other columns, how would I do this?
In asp.net repeater I could do:
<%# Container.DataItem("Col3") %> <%# Container.DataItem("Col4") %>
How would I do this in a telerik grid?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够使用非常相似的语法。在
GridTemplateColumn
内,您需要创建一个ItemTemplate
。在此,您可以在列中放置您想要显示的任何标记。例如:有关详细信息,您可以参考各种列类型的文档: http://www.telerik.com/help/aspnet-ajax/grid-column-types.html(您需要向下滚动才能到达 GridTemplateColumn 部分。
另外,我假设您使用的是 Visual Basic?否则,我认为语法会有所不同。
You should be able to use very similar syntax. Inside the
GridTemplateColumn
, you need to make anItemTemplate
. In that, you can put whatever markup you want to be displayed in the column. For example:For more information, you can reference the documentation for the various column types: http://www.telerik.com/help/aspnet-ajax/grid-column-types.html (you'll need to scroll down a ways to get to the section on
GridTemplateColumn
.Also, I'm assuming you are using Visual Basic? Otherwise, I think the syntax would be different.