I have a Screen that has BrowseGallery and Form on it. I would like to refresh both BrowseGallery and Form data, with one refresh button. Form has data source of SQL table, and has editable fields. BrowseGallery has also source of SQL table, but a different one.
I tried doing refresh only for a BrowseGallery on a refresh button:
OnSelect.Refresh(BrowseGallery.AllItems) Returns runtime error: Only managed connections can be refreshed
I tried doing refresh only for one datasource on screen:
Refresh('[dbo].[Table]') And also got a runtime error: Only managed connections can be refreshed
Any suggestions?