I am creating an app for data collection that refers to a few sharepoint lists. While online, the app works just fine presenting all results from the Sharepoint Lists that I am referring to. When I go offline, it seems to only pull maybe the first couple hundred rows from the list (understanding that I need to first be online to cache the data prior to it going offline).
Is there a way to bring in more rows of data when creating and saving the collection? Code for App OnStart is below. The source that I am specifically having problems with is AssetTaxonomy (Collection=Type). This table has about 1,200 rows that I really need to be available while offline as well as online. I have dependent dropdowns in my app that use this data to present recommended maintenance schedules.
I have searched this site and couldn't find anything that gets me to where I need to be. Thanks for the help, this site has been very informative!
//creates collection
Concurrent(
ClearCollect(AssetRegistry,'Asset Registry'),
ClearCollect(CIBSE,'CIBSE Rating'),
ClearCollect(Type,AssetTaxonomy),
ClearCollect(Geo,'Site Geography Data'));
//loads collection locally
Concurrent(
LoadData( ColEventData,"Offline Asset Data",true),
LoadData(AssetRegistry,"RegisterLocal",true),
LoadData(CIBSE,"CIBSELocal",true),
LoadData(Type,"Type local",true),
LoadData(Geo,"GeoLocal",true));
//saves location locally
Concurrent(
SaveData( ColEventData, "Offline Asset Data"),
SaveData(AssetRegistry,"RegisterLocal"),
SaveData(CIBSE,"CIBSELocal"),
SaveData(Type,"Type local"),
SaveData(Geo,"GeoLocal"));
Notify("Data sources cached")