Johannes Tuikkala

Results 11 comments of Johannes Tuikkala

Changing the tool works but it doesn't update css class names of the tools, i.e. it looks like that the previous tool is still selected

We have case where this issue or very similar happens with Pulse Secure SSL based VPN and Google Chrome. Some of the requests are done without that `,DanaInfo=url,SSL+` postfix. For...

One possible explanation could be that VPN doesn't always detect URLs created by string concatenation, and thus fails to rewrite those.

Workaround: ``` PlotOptionsBoxplot options = new PlotOptionsBoxplot() { boolean animation = false; public boolean isAnimation() { return animation; } public void setAnimation(boolean animation) { this.animation = animation; } }; ```

Workaround ``` private class CustomPlotOptionsSolidgauge extends PlotOptionsSolidgauge { private String innerRadius; public String getInnerRadius() { return innerRadius; } public void setInnerRadius(String innerRadius) { this.innerRadius = innerRadius; } } ``` More...

Test project demonstrating the **workaround** [datepicker-in-menu.zip](https://github.com/vaadin/web-components/files/9490085/datepicker-in-menu.zip) - Run mvn clean install once (mvn-resource-plugin should copy the vaadin-contextmenu-items-mixin.js into node_modules) - Then run the application - Now menu should stay open,...

For me the following seemed to work: - docker exec -it container_id bash - sqlplus /nolog - connect / as sysdba - startup Then it took ~15min to create the...

My customer was able to reproduce this issue with very simple code: ``` StreamResource excelFile = createResourceExcel(); Button downloadExcelButton = new Button(); downloadExcelButton.setText("download"); Anchor downloadExcel = new Anchor(excelFile, ""); downloadExcel.add(downloadExcelButton);...

Related ticket for optimizing component-free Vaadin/Hilla development environment: https://github.com/vaadin/flow/issues/19948

Make sure you use new enough web.xml version like below (tested with V14.0.14 and worked fine) ```your web.xml refers to old 2.5 version: I tried following which seems to work:...