At the moment, when having a view with multiple mediators, the 'PreInitialize', 'Initialize' and 'PostInitialize' functions are called in the following order:
Mediator A - PreInitialize
Mediator A - Initialize
Mediator A - PostInitialize
Mediator B - PreInitialize
Mediator B - Initialize
Mediator B - PostInitialize
But expected now to be the following:
Mediator A - PreInitialize
Mediator B - PreInitialize
Mediator A - Initialize
Mediator B - Initialize
Mediator A - PostInitialize
Mediator B - PostInitialize
At the moment, when having a view with multiple mediators, the 'PreInitialize', 'Initialize' and 'PostInitialize' functions are called in the following order:
But expected now to be the following: