Hi all.
I am trying to speed up a particular function that requires creation of hundereds of records. To make it run faster, I’ve moved the function to a service. That works well and its faster than the client side processing. However, I need to update 3 datasources afterwards. I can set the datasource to “Initially subscribe to updates”, but as far as I can see, it fires an update many times for some reason. The manual approach as far as I can see, is to disable the datasource and then reenable it afterwards. That works, but the frontend flickers which is not good.
Any suggestions on how to achieve this in a better way?
I guess I could run every datasource “Runtime only” and then return the three datasources through the result of the service call, but I would very much like to keep the datasources online.
Any feedback is appraciated
Øystein