Push not updating component in @SpringView

Hi,

trying to update Label or TextArea with Push in @SpringBoot view is not working.

However updating label in “main view” updates the Label correctly.

What needs to be done that Push updates @SpringBoot view components also.

Code is here:

https://github.com/petria/acracemanager

Hi,
I think the problem is that in RaceManagerUI.receiveBroadcast you are always getting a new instance of DefaultView through viewProvider.getView("").

Try using DefaultView view = (DefaultView)getNavigator().getCurrentView();

HTH
Marco

Hello,

that indeed was the problem… Thanks!