gridPanel 中的空消息

发布于 2024-09-28 05:32:53 字数 220 浏览 13 评论 0原文

我正在使用 Extjs gridPanel 来显示数据。当没有可用数据时,我想在 gridPanel 中显示“无数据...”消息。如何做到这一点?

我尝试了emptyText属性,但它不起作用。

我认为emptyText适用于gridView而不适用于gridPanel。

请帮助我如何在 gridPanel 中显示空数据消息。(我使用的是 gridPanel 而不是网格视图)

I'm using Extjs gridPanel to display data. I want to show "No data..." message in gridPanel when no data available. How to do this ?.

I tried emptyText property but its not worked.

I think emptyText is for gridView not for gridPanel.

Please help me how to show empty data message in gridPanel.(I'm using gridPanel not grid View)

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

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

发布评论

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

评论(1

忘你却要生生世世 2024-10-05 05:32:53

您回答了自己的问题——它确实是 GridView 属性。因此,要在 GridPanel(内部使用 GridView)中指定它,只需执行以下操作:

myGrid = new Ext.GridPanel({
    viewConfig: {
        emptyText: 'No records'
    }
});

根据下面的注释,您还可以包含 deferEmptyText: false 在 vi​​ewConfig 中以便立即渲染文本(否则它会等到初始渲染之后存储加载完成)。

You answered your own question -- it is indeed a GridView property. So to specify it in the GridPanel (which uses a GridView internally) just do this:

myGrid = new Ext.GridPanel({
    viewConfig: {
        emptyText: 'No records'
    }
});

Per the comments below, you might also include deferEmptyText: false in the viewConfig for the text to render immediately (otherwise it waits until after the initial store load is complete).

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