Hey everyone,
this is the weirdest thing that happened in powerapps for me so far.
I have a SQL-Server datasource and put it in a collection like this (in "onStart" of the App): ClearCollect(myCollection, GroupBy('[myDatasource]', "BookingID", "CustomerID", "CustomerName", "Date", "Details"))
Now I got a gallery that is connected to "myCollection". In the gallery I have labels for "BookingID", "CustomerID", "CustomerName", "Date" and populate them with ThisItem.BookingID, ThisItem.CustomerID, etc...
Everything seems to work fine here. Once I run OnStart the fields get filled up with the Data.
The issue arises when I save + publish the App and try to run it from the PowerApps Windows Store Application or from my list of apps on make.powerapps.com: The App loads, but the only labels that actually show the Data are the labels with ThisItem.BookingID and ThisItem.Date. The others are just blank for whatever reason. It seems like the collection never gets those values which is weird, because when I'm working on the App everything works fine...
Trying to figure out how to fix this is quite difficult since the problem doesn't exist while working on the app.
Does anyone have an idea what the issue could be or why I get different results depending on where I run the app?
Thanks.