是否可以在 RadGrid 中垂直而不是水平显示数据?

发布于 2024-12-09 02:37:58 字数 201 浏览 0 评论 0原文

是否可以在 RadGrid 中垂直而不是水平显示数据?

我目前有一个显示多个列的 RadGrid。例如:

  • 产品 ID
  • 产品名称
  • 价格

有什么方法可以更改 RadGrid 的方向以垂直而不是水平显示数据?

谢谢,

Is it possible to display data in the RadGrid vertically rather than horizonatally?

I currently have a RadGrid that displays several columns. For example:

  • Product Id
  • Product Name
  • Price

Is there any way I change the orientation of the RadGrid to display the data vertically instead of horizontally?

Thanks,

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

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

发布评论

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

评论(2

绝影如岚 2024-12-16 02:37:58

RadListView 更适合这种情况:

<telerik:RadListView ID="lst" runat="server">
    <ItemTemplate>
        <table cellpadding="3" cellspacing="0">
            <tr>
                <td><%#Eval("Col1")%></td>
            </tr>
            <tr>
                <td><%#Eval("Col2")%></td>
            </tr>               
            <tr>
                <td><%#Eval("Col3")%></td>
            </tr>                                 
        </table>
    </ItemTemplate>
</telerik:RadListView>

The RadListView would be more appropriate for this:

<telerik:RadListView ID="lst" runat="server">
    <ItemTemplate>
        <table cellpadding="3" cellspacing="0">
            <tr>
                <td><%#Eval("Col1")%></td>
            </tr>
            <tr>
                <td><%#Eval("Col2")%></td>
            </tr>               
            <tr>
                <td><%#Eval("Col3")%></td>
            </tr>                                 
        </table>
    </ItemTemplate>
</telerik:RadListView>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文