Is there support for an infinite list backed by the websql proxy? It doesn't seem so, as whether infinite is true or false, there are only 25 items in the list.
Infinite list using websql proxy store
126 Views Asked by jacob At
2
There are 2 best solutions below
Related Questions in SENCHA-TOUCH
- "Invalid application name : Myapp" in sencha
- ili2118A touch driver issue
- After upgrading sencha to 6.6.0 i'm getting Uncaught TypeError: Cannot read properties of undefined (reading 'other')
- "Getting 'Failed to load resource: the server responded with a status of 404' error in Sencha when submitting form data to ASP.NET Web API"
- IOS cordova app always return 400 and bad request when fetch HTTP url
- Touch Designer - MIDI input edrums doesn't work correctly
- How to control tab button cursor pointing in horizontal direction
- Ext.NET components using aspx.cs(code behind script)
- Is there a way to overwrite the values of a dynamically created html elements created by a Sencha app?
- Invalid namespace ExtJs
- Ext.TaskManager.newTask() is not working when the ipad is locked
- ExtJs How can I add column support to an expander plugin?
- How can I add a function inside the tpl field that belongs to the itemConfig object in an Extjs grid?
- How to copy text with your finger in ExtJS?
- Count of visible rows in Ext.dataview.NestedList
Related Questions in SENCHA-TOUCH-2
- How to reset pagination in datastore-Extjs
- Extjs checkbox boxLabel color not changing
- Extjs checkbox and textarea - how to disable the checkbox on scroll behavior of the textarea?
- How to change the item inside Ext.dataview.List?
- Sencha Touch Picker show() with last selection
- How to make EXT JS model and proxy store work? (please_help!)
- How to perform action on the basis of response status while doing sync in Ext.js
- Sencha Touch: Nested list scrolls to top on Back, how can I disable this?
- How to add attribute to Text field in Sencha Touch?
- How to restrict Sencha touch Textfield to accept only numbers and space character?
- Memory usage comparison Xamarin.Android vs Sencha
- properties of two models are not shown in grid with ExtJS
- Sencha Touch Deployment Options?
- Sencha Touch 2.0 Progress Indicator
- My cordova app is not working in M1 a1 mobile
Related Questions in SENCHATOUCH-2.4
- Extjs 6.5 - finding an association type (hasOne, hasMany, belongsTo, etc)
- Sencha touch 2.4.1 datepicker issue in Samsung galaxy s8 plus
- Sencha 2.4.2 cordova app stuck at "Device Ready" Screen on device
- Created app not accessible via http://localhost:1841/MyApp
- How do I make Sencha Touch and Cordova work together?
- Create Sencha Touch Application on Mac
- IBM MobileFirst 7.0 with Sencha Touch in Windows Phone 8.1 showing errors
- How to use the name property in production
- IBM Worklight 7.0 with Sencha Touch How to optimize Application?
- Tap event on textfield in Sencha Touch
- Where is the list of names of pictos font icons in sencha touch 2.4
- Sencha Touch 2.4.1, bug with iPhone scrolling
- How to load a rest store with ID in Sencha Touch 2.4.2?
- I cannot pass data from controller to a view in Sencha Touch 2.4
- How to create a striped Ext.Dataview
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I was able to get this to work by modifying the Sql proxy to include total record count. More specifically, in the selectRecords method I had to change the code:
to a second executeSql call that queries all records. The sql statement is similar to the original one, except that (1) it does not include the LIMIT expression; and (2) the
SELECT *should beSELECT COUNT(*) AS TotalCount. Then read TotalCount value from the first row of the result set, callresult.setTotal(totalCount), and finally fire the callback.