ExtJS:我们如何获得网格中商店的大小
我正在尝试获取我在网格中使用的商店的大小。 但我无法找到任何方法来获取商店的大小(网格中的记录数)。
任何人都可以帮忙,我怎样才能实现这一目标。
谢谢, 尼哈
I am trying to get the size of the store I am using in the grid.
But I am not able to find any method to get the size of the store(number of records in the grid).
Could anyone plz help, how can I achieve this.
Thanks,
Neha
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有 getCount() 方法来获取商店中的元素数量。
there is getCount() method to get the number of elements in the store.
store.data.length
将为您提供记录数。store.data.length
will give you the number of records.