Tomi Virkki

Results 63 comments of Tomi Virkki

Confirmed the bug, here's the outcome with the provided snippet: ![Screenshot 2024-01-31 at 16 53 43](https://github.com/vaadin/flow-components/assets/1222264/8856b4ef-5e06-4078-841c-9347775fe1f3) Interestingly, it works as expected if you add `add(appConfirmDialog)` to the view

This issue still seems valid and needs more investigation. Calling `getDataCommunicator().getKeyMapper().remove(source);` inside the `move` method seems to workaround it.

As a workaround, you might consider hiding the cells on the last header row and the first footer row with CSS: ```css vaadin-grid::part(last-header-row-cell) { display: none; } vaadin-grid::part(header-cell) { border-bottom:...

This task is complete, except for the documentation part. The [documentation PR](https://github.com/vaadin/docs/pull/3493) can only be merged once the `latest` branch in `docs` uses 24.5.

Hi @JayKayDeon, a somewhat similar-looking layout can be produced with two split layouts using the following setup. Not sure if this fully covers your use case: ```html Left Middle Right...

Workaround: ```js grid.$.table.addEventListener('scroll', () => { const scrollLeft = grid.$.table.scrollLeft; grid.recalculateColumnWidths() grid.$.table.scrollLeft = scrollLeft; }); ``` I recommend using some kind of throttling for this however, as running `recalculateColumnWidths` on...

Maybe you can set a flag to disable the listener logic while recalculate is being run: - horizontal position to 480px; - scroll event fires - enable the the flag...

Ah, I think what's going on. We're probably using different grid versions. With the newest version, the original workaround works just fine. See it running live at https://productive-neat-manuscript.glitch.me/ (source: https://glitch.com/edit/#!/productive-neat-manuscript)

We're currently considering making `htmlValue` read/write also. Quill has [dangerouslyPasteHTML](https://quilljs.com/docs/modules/clipboard/#dangerouslypastehtml) API which could be exposed on the client side (with similar name) while the Flow API could have `setHtmlValue(...)` (with...

As discussed [here](https://github.com/vaadin/vaadin-rich-text-editor/issues/105#issuecomment-460999398), you can already use the editor in `readonly` mode (with the controls hidden). But a dedicated / more lightweight component just for viewing delta would also be...