如何访问 Telerik 网格中当前行的数据?

发布于 2024-12-02 12:33:07 字数 242 浏览 0 评论 0原文

我有一个网格,并说我在给定的 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 技术交流群。

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

发布评论

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

评论(1

分開簡單 2024-12-09 12:33:07

您应该能够使用非常相似的语法。在 GridTemplateColumn 内,您需要创建一个 ItemTemplate。在此,您可以在列中放置您想要显示的任何标记。例如:

<telerik:GridTemplateColumn HeaderText="Col3 and 4" UniqueName="TemplateColumn">
    <ItemTemplate>
        <%# Container.DataItem("Col3") %> <%# Container.DataItem("Col4") %>
    </ItemTemplate>
</telerik:GridTemplateColumn>

有关详细信息,您可以参考各种列类型的文档: 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 an ItemTemplate. In that, you can put whatever markup you want to be displayed in the column. For example:

<telerik:GridTemplateColumn HeaderText="Col3 and 4" UniqueName="TemplateColumn">
    <ItemTemplate>
        <%# Container.DataItem("Col3") %> <%# Container.DataItem("Col4") %>
    </ItemTemplate>
</telerik:GridTemplateColumn>

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.

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