I'm working on a software called "Group-Office" which uses the extjs-framework.
我正在开发一个名为“Group-Office”的软件,它使用extjs-framework。
I've run into an issue that the so called data.JsonStore-Object has a limit of 30 items. I couldn't find any method to increase it in the documentation.
我遇到了一个问题,即所谓的data.JsonStore-Object有30个项目的限制。我在文档中找不到任何增加它的方法。
I'd need help from somone who uses this framework on a regular basis or knows it better than me.
我需要定期使用这个框架的somone的帮助,或者比我更了解它。
1 个解决方案
#1
0
The ExtJS store is just a collection of data. There is no limit set unless it has a custom check...
ExtJS商店只是一组数据。没有限制设置,除非它有自定义检查...
What version are you using? Is the content saved/fetched via a sever? Maybe the limit is implemented there? Can you show us some code?
你用的是什么版本?内容是通过服务器保存/获取的吗?也许限制是在那里实施的?你能告诉我们一些代码吗?
You can try debugging by setting a breakpoint in the stores add method. (does he get there? check stack trace...)
您可以通过在stores add方法中设置断点来尝试调试。 (他到那儿了吗?检查堆栈痕迹......)
#1
0
The ExtJS store is just a collection of data. There is no limit set unless it has a custom check...
ExtJS商店只是一组数据。没有限制设置,除非它有自定义检查...
What version are you using? Is the content saved/fetched via a sever? Maybe the limit is implemented there? Can you show us some code?
你用的是什么版本?内容是通过服务器保存/获取的吗?也许限制是在那里实施的?你能告诉我们一些代码吗?
You can try debugging by setting a breakpoint in the stores add method. (does he get there? check stack trace...)
您可以通过在stores add方法中设置断点来尝试调试。 (他到那儿了吗?检查堆栈痕迹......)