You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 24, 2021. It is now read-only.
function refreshList(args) {
console.log("Pulling to refresh...")
var pullRefresh = args.object;
cleanView()
// ONLY USING A TIMEOUT TO SIMULATE/SHOW OFF THE REFRESHING
setTimeout(function () {
pullRefresh.refreshing = false;
}, 1000);
}
exports.refreshList = refreshList;
The CleanView function only sorts the table for the list view.
Any ideas?
The text was updated successfully, but these errors were encountered:
Besides showing up the icon (as you can see in the picture), nothing else happens. Not sure if it's not refreshing at all or never stopping (the function I'm calling just order the list)
Just ran the demo and confirmed it works 👍 - might want to start by comparing the demo sample with yours and see what's different. If all looks good then I'd guess it's the NS UI stuff causing something to go wrong.
I am running the plugin fine on iOS, but on Android I just get this while trying to pull down:
This is my XML code:
and the JS code for the pulling control:
The CleanView function only sorts the table for the list view.
Any ideas?
The text was updated successfully, but these errors were encountered: