Gokhan Sevik
Gokhan Sevik
Also, I could not make @EventBusListenerMethod annotation make work. When I mark my methods with that annotation (for example @EventBusListenerMethod(scope = EventScope.UI, filter = LoginEventFilter.class) ), even if event published...
Looks like EventBusListenerMethodFilter filter method is changed. When I change my Filters as below example, @EventBusListenerMethod annotated methods called fine. ``` import org.vaadin.spring.events.Event; import org.vaadin.spring.events.EventBusListenerMethodFilter; public class BrowserResizeEventFilter implements EventBusListenerMethodFilter...
Thank you both for your replies. As you suggested, I have upgraded to 0.0.7, separated the Login to different UI (so we have 2 Vaadin UIs, one for main application...