Tatu Lund

Results 142 comments of Tatu Lund

This is a low hanging fruit as the component fires the low level event already, you can thus use Element API to observe it combobox.getElement().addEventListener("opened-changed", e -> { Notification.show(e.getEventData().toJson()); }).addEventData("event.detail");

> 1. Server-side validation is triggered on blur even if nothing has been typed Note, also client side validation is triggered on blur even if nothing has been typed as...

> If I add refreshAll() after modifying the filters, the selection items are completely lost. @drewharvey Yes, that is a known case, see this ticket https://github.com/vaadin/flow-components/issues/2593 Furthermore, some other components...

Could you edit your ticket title and description and express more clearly the issue and how to replicate it. If you are about to ask a generic question you should...

This is improved in Vaadin 8.25.2 released today.

Apparently there are some documentation about this here: https://www.selenium.dev/blog/2023/headless-is-going-away/, which works for me. ``` ChromeOptions options = new ChromeOptions(); options.addArguments("--headless=new"); setDriver(TestBench.createDriver(new ChromeDriver(options))); ``` Alternatively one can use `Parameters.setHeadless(true)` The documentation...

@mvysny You might have better luck with web driver manager https://github.com/TatuLund/bean-table/blob/v24/pom.xml#L104 https://github.com/TatuLund/bean-table/blob/v24/src/test/java/org/vaadin/tatu/AbstractViewTest.java#L48

Currently I am doing that like this https://github.com/TatuLund/hilla-v2-demo/commit/ccc5570bbe844eabd22987a447d0686a4418b353

IE10 is not supported under Vaadin 7 extended maintenance and Vaadin 8 anymore.

The memory leak is still present also in Spreadsheet 2.0.1