ViewRenderEvent
typedef
Fired after a topmost change block and all post-fixers are executed.
Actual rendering is performed as a first listener on 'normal' priority.
view.on( 'render', () => {
// Rendering to the DOM is complete.
} );
This event is useful when you want to update interface elements after the rendering, e.g. position of the balloon panel. If you wants to change view structure use post-fixers.