I'm working on a Titanium project that has hundreds of records users can scroll through (think music albums/songs), in different categories.
Does anyone have an idea as to how I could possibly use a scrolling table view that fetches the next set of data when the user scrolls to the bottom? I know how to do this on a web page using jQuery, but not sure how I would implement it with the table view?
Depending on the size of data fetched, I may cache it in a local database, but not sure what sort of size limits I'll hit. I just don't want to have to have a very large app that needs to be downloaded initially by the users.
Okay, I've found a sample that should be a great starting point:
From this, I will periodically make paging calls to my web service.
[EDIT] - Looks like the KitchenSink demo was just updated yesterday! New link: https://github.com/appcelerator/KitchenSink/blob/master/Resources/ui/handheld/ios/baseui/table_view_dynamic_scroll.js Based on this new link, does anyone know if this only works in iOS?