flow-components
flow-components copied to clipboard
Java counterpart of Vaadin Web Components
### Describe your motivation When the width of a Combobox or Select is be dependent on its rendered items, then this width should be recalculated upon setItems(). ### Describe the...
## Motivation There are several problems with the current approach based on the validated event: 1. Server-side validation is triggered on blur even if nothing has been typed ([#17429](https://github.com/vaadin/flow/issues/17429), [#6146](https://github.com/vaadin/flow-components/issues/5712))...
### Describe your motivation Currently the easiest way to define a component renderer is to just pass a function for creating the DOM structure: ```java grid.addColumn(new ComponentRenderer(item -> { Span...
### Description of the bug / feature The use case is to have a simply search text field and a result grid. After entering some text in the search field,...
### Description A customer wants to use the tree grid to display a set of hierarchical items (roughly 500 rows in total). The items shall be shown expanded and all...
### Describe your motivation Hello, I found that `MessageInput` component doesn't have required Java API for setting a placeholder, or to change any attribute for `` inside the ``. This...
### Description When you have a big lazy-loading grid and you scroll down with the vertical scrollbar directly from the first rows to the last rows, these are not displayed....
When I add a confirm/reject/cancel listener, I should be able to prevent the dialog from closing if certain conditions aren't met. Something like: ```java var amount = new NumberField(); var...
### Describe your motivation The built-in GridPro editors allow you to start typing, which is a nice UX. Currently, you can't do this with custom editors; you need to double-click...