Johannes Tuikkala

Results 7 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...