Tatu Lund

Results 142 comments of Tatu Lund

As a temporary workaround you can copy the frontend/generated/connect-client.default.ts file to frontend/connect-client.ts and change the value of the prefix value in the object provided to the `ConnectClient` ``` import {...

I noticed the same when working on ProtoTools, I needed to apply some additional css to patch it work nicely in responsive layout. Also using it in Grid's editor is...

Should the expected behavior to be wrapping the elements when they do not fit? ![image](https://user-images.githubusercontent.com/14309836/204271332-7b4fa580-1a3e-453c-ae0a-8fd2e889784d.png) Define CSS themes/my-theme/components/vaadin-date-time-picker.css ``` :host([theme~="picker-responsive"]) .slots { flex-wrap: wrap; } ``` Enable theme variant with...

Should this Epic include also z-index ordering API's like Dialog#bringToFront() Dialog#bringToBack() (see also https://github.com/vaadin/vaadin-dialog/issues/224 )

There is a proof of concept Window component in my mdi-demo, which is building on top of Dialog component by applying some custom CSS and additional JavaScript https://github.com/TatuLund/mdi-demo/blob/master/src/main/java/com/example/application/components/window/Window.java

It is possible to do this with JavaScript, see the following gist https://gist.github.com/TatuLund/97841f688c6f256871ede979a36886d5

If the motivation of the closing of the menu on "mouseleave" is that there is a button or some other component that you want to click, there is also an...

@kPlock update to 24.2.6, see https://github.com/vaadin/flow-components/issues/5829

There is an example how to do this yourself here https://github.com/TatuLund/devday-demo-flow/blob/master/src/main/java/com/vaadin/devday/demo/views/GridView.java#L197 In addition to component column you need also extended radio button https://github.com/TatuLund/devday-demo-flow/blob/master/src/main/java/com/vaadin/devday/demo/views/GridView.java#L404

If there would be the flag in AttachEvent as well, it would provide alternative approach to show customized error message for the user as described here: https://github.com/vaadin/flow/issues/19804