Martin Vysny
Martin Vysny
My use-case is to only store HTML into the database, I'm not using the Delta format at all.
I think this is solved in Vaadin 23+ since RichTextEditor offers the `asHtml()` function which provides `HasValue` view over RTE which holds html String as a value.
> Returning long would give the impression that it's a good idea to have a grid with more than 2000000 rows, whereas that is most likely quite problematic from a...
Bump. ```java @Route(value = "", layout = MainLayout.class) @RouteAlias("login") public class MainView extends VerticalLayout {} ``` I'd intuitively expect `@RouteAlias` to inherit layout from `@Route`. However, the actual behavior depends...
Looks similar to vaadin/vaadin-gradle-plugin#116 and vaadin/vaadin-gradle-plugin#81 . It could also be that the dependency is not of type zip (i've seen projects pulling .dll/.so files as dependencies, causing this issue...
Anyway, this ticket targets Vaadin 23.x. @TatuLund can you transfer this ticket to https://github.com/vaadin/flow/issues ? Whoa, I can do it myself :+1: :-D
> I think this is out of scope of TestBench browser tests and should be done with TestBench UI Unit Test instead. Perhaps... But then again, the point of Grid...
> It is just about performance regarding special cases. I don't think that asserting against the state of the grid is a special case: this is actually the most common...
> It is not a question is it possible or not. With current API it is possible already. It is just about performance regarding special cases. This is basically the...
As it turns out, we'll need the HTML contents of the Grid cell, so the grid dump functionality should return both. The best solution would be an `Iterable` which would...