Hi @sanderson82 ,
Which Type column (from your SP List) does the Dropdown list box connect to? Choice Type Columns?
Do you want to pull down Dropdown box available options locally, then use it within the Dropdown box when the app is Offline?
Based on the needs that you mentioned, I think the collection could achieve your needs. I have made a test on my side, please consider take a try with the following workaround:
Set the OnStart property of App to following:
ClearCollect(Dropdown1Options, Choices('SP List'.ChoiceField1));
ClearCollect(Dropdown2Options, Choices('SP List'.ChoiceField2));
ClearCollect(Dropdown3Options, Choices('SP List'.ChoiceField3));
Set the Items property of the Dropdown1 to following:
If(
Connection.Connected,
Choices('SP List'.ChoiceField1),
Dropdown1Options
)
Set the Items property of the Dropdown2 to following:
If(
Connection.Connected,
Choices('SP List'.ChoiceField2),
Dropdown2Options
)
Set the Items property of the Dropdown3 to following:
If(
Connection.Connected,
Choices('SP List'.ChoiceField3),
Dropdown3Options
)
...
...
Please consider take a try with above solution, then re-load your app, then check if the issue is solved.
Best regards,