Aleksander Fjellvang
01/25/2023, 1:10 PMeditorService.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
<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?