Closed razorsyntax closed 5 years ago
Update: Sadly, I ended up uninstalling GridView and implemented a custom version. I'll definitely check back to see if this is something that's possible with GridView in the future.
Hey @razorsyntax , using Pull To Refresh is possible with the plugin but you are doing it wrong. You wrapped your listview with the PullToRefresh and not the GridView.
@PeterStaev , Oh sweet! But how does the order go?
<Gridview>
<PullToRefresh>
<other-stuff></other-stuff>
</PullToRefresh>
</Gridview>
I don't think I understood the order you mentioned.
@razorsyntax ,you need to wrap the GridView just like you do with the ListView.
<PullToRefresh>
<Gridview>
<other-stuff></other-stuff>
</Gridview>
</PullToRefresh>
Is it possible to create a Pull to Refresh with this plugin
I've experimented with the PullToRefresh plugin to implement this to no avail. See my example, not working code below.
Any ideas?