gpt4 book ai didi

Telerik Radgrid 未在浏览器中显示

转载 作者:行者123 更新时间:2023-12-04 14:34:31 25 4
gpt4 key购买 nike

Telerik Rad 控件在浏览器中仅显示为实线。但在 Visual Studio 设计中它显示正确。

<telerik:RadGrid ID="RadGrid1" runat="server" 
onneeddatasource="RadGrid1_NeedDataSource">
<MasterTableView ShowHeadersWhenNoRecords="false" AutoGenerateColumns="true">
<NoRecordsTemplate>
<div>There are no records to display</div>
</NoRecordsTemplate>
</MasterTableView>

</telerik:RadGrid>

有人可以帮我解决这个问题吗

最佳答案

如果“RadGrid1”的数据源是 Nothing/Null,即使调用了 databind(),控件实际上也不会被绑定(bind)。可以将空集合绑定(bind)到控件,以便显示 NoRecordsTemplate。

在 VB.net 中:RadGrid1.DataSource = new Object() {}
在 C# 中:

RadGrid1.DataSource = new object[] { };

关于Telerik Radgrid 未在浏览器中显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5302098/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com