Hi Folks - I'm developing a package for the backof...
# package-development
a
Hi Folks - I'm developing a package for the backoffice. I open an overlay via
editorService.Open
I've defined the view in a different file. In this view i'm loading some resources from the backend, and i have some code handling the loading the vm's loading state in the FE controller. In the view i have
Copy code
<umb-load-indicator ng-if="vm.loading"></umb-load-indicator>
                <umb-box-content ng-if="!vm.loading">
Now the thing is when the data is returned in the promise and i set
vm.loading = false
the view doesn't update. In fact i doesn't update until the backoffice calls
GetRemainingTimoutsInSeconds
. Is it just an issue with
editorService.open
? or can i trigger a ui refresh somehow?