When a dashboard is opened, its elements (accessed as its subnodes) get a handy reference to their view under the createdView label, e.g.:
Model.find("Tools/Dashboards/1/1>variables/createdView")
The pointer stored there is useful (especially if you don't have an ID assigned to that dashboard element) - it can be used to dynamically edit e.g. the font color as per the comments in:
https://answers.flexsim.com/questions/121047/how-to-change-color-font-of-a-button-in-the-dashbo.html
However, if you save the model, that createdView node gets destroyed, eliminating this handy link, forcing you to either close and re-open the dashboard or search the View tree to get a pointer to that dashboard element's view.
Is there an option of preventing that node from getting deleted on model save? Or maybe an easy way of restoring that node after a model save?