gridPanel 中的空消息
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您回答了自己的问题——它确实是 GridView 属性。因此,要在 GridPanel(内部使用 GridView)中指定它,只需执行以下操作:
根据下面的注释,您还可以包含
deferEmptyText: false
在 viewConfig 中以便立即渲染文本(否则它会等到初始渲染之后存储加载完成)。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:
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).