Skip to content

Instantly share code, notes, and snippets.

@wichertandre
wichertandre / Save data in device cache
Created April 12, 2018 10:41
A simple code example to illustrate the use of the offline functionality from PowerApps
If(
Connection.Connected,
ClearCollect(LocalStorage, "sharepointlist");
SaveData(LocalStorage, "localStorage"),
LoadData(LocalStorage, "localStorage", true)
)