Hi all,
I'm having difficulties to show attachments in an offline application.
I have a 'Products' entity for which I enabled attachments. I am able to show these in my PowerApp when I use a form to display those.
Now, my application needs to work offline. So I used the Save/Load data to cache my datasource into a local collection:
If(Connection.Connected,ClearCollect(ProductCollection,Products);SaveData(ProductCollection,"LocalProducts"),LoadData(ProductCollection,"LocalProducts",true))
This works for all my entity fields but not for my attachments. Is this possible?
If so, is there a limit on the size of the collection that can be stored locally?
Idea of the app is that we create an offline application that can be used at faires to showcase the products and easily show presentations/certification documents/etc...
Thanks!