I have a customed data browser page. It open data editor page in NEW_TAB.
My code for openning screen: TailorEditor screen =screens.create(TailorEditor.class, OpenMode.NEW_WINDOW); screen.setMessage(event.getItem().getIdentifier(),event.getItem().getCodeType().toString()); screens.show(screen);
The problem is, for the same data entry with an already opened tab, a new Tab will be opened.
Is there a way just to activate the already opened tab, and without refreshing to keep possible unsaved data?