Not work correctly on a set of customers within a single session

Just open a few tabs and a browser to request information on one, without refreshing the page in the other event-management becomes impossible.
That is, for example, there is a listener that updates dynamically, for example, a map -


...
	@Override
	public void valueChange(ValueChangeEvent event) {
	      Object value = event.getProperty().getValue();        
	      
	      if(value != null || (value instanceof Date)) {
	    	  mapUpdater.getUserSelectedData().setBeginPeriodDate((Date)value);
	    	  mapUpdater.updateMap();
	      }
	}

...

If you work within the same window / tab, then everything is OK.
But if we go after the other, the functional becomes a non-working (if you refresh the page - that’s OK).

Perhaps, if somehow solve this problem? I would greatly appreciate your help!:smiley:

Cheers,
Thx

You should look into the Navigator / Navigator7 addons which help you developing applications with multi-tab / window support.

I welcome you, Thomas Neidhart!

Thank you very much for your reply! :smiley:
Try it.

Cheers,
Thx

I here that helped -


...
systemMessages.setOutOfSyncURL(null);
...

In all browsers declared synchronized state controls! :smiley: