Run refresh check, progress and navigation update, and conditions check when a new value set is added.
This PR adds updateProgress and updateView to service.js. The idea is, that:
updateProgress is called on each service.save and service.addValueSet and service.removeValueSet, and
updateView on service.save, but only when service.initView is not called. It contains the check if an optionset needs a refresh, the update of the navigation, and the re-evaluation of the conditions (and was named postSave for a few days).
Run refresh check, progress and navigation update, and conditions check when a new value set is added.This PR adds
updateProgress
andupdateView
toservice.js
. The idea is, that:updateProgress
is called on eachservice.save
andservice.addValueSet
andservice.removeValueSet
, andupdateView
onservice.save
, but only whenservice.initView
is not called. It contains the check if an optionset needs a refresh, the update of the navigation, and the re-evaluation of the conditions (and was namedpostSave
for a few days).