VerticalLayout group = new VerticalLayout(new TextField("field-01"),
new TextField("field-02"));
group.addListener((Component.Listener) e -> System.out.println("catch event:$e"));
i see only attach events, but i want to catch any events of the inner components. For example hide some component depends of the state another.