python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Setting the pageSize of Extjs bufferedstore based on a config file
I have an Extjs bufferedstore as below:
Ext.define('myStore', {
extend: 'Ext.data.BufferedStore',
requires: [
'myStoremodel' // model that the store takes in
],
storeId: 'myTeststore',
model: ...
Ash
Votes: 0
Answers: 1
Extjs bufferedStore infinite scroll not working to trigger Ajax calls
I have a buffered store that makes an ajax call. I have about 40 records in total. I want the multiple ajax calls to be triggered on scrolling the page. However, as soon as I load the page I see the m...
Ash
Votes: 0
Answers: 1
Extjs Buffered store not triggering multiple API/ajax calls
I have a buffered store that makes an ajax call. I have the API defined to take some start and limit and only return the results between that start and limit. However, I am not seeing multiple API cal...
Ash
Votes: 0
Answers: 1