Tatu Lund
Tatu Lund
@fabst2w I read the SO question and based on that the use case is roughly the same I have for example in BeanTable component. I am using onAttach pared with...
I wonder why this ticket is still open as there is ``` @Override public void afterNavigation(AfterNavigationEvent event) { if (event.isRefreshEvent()) { // Do the refresh stuff } } ```
This could be related to https://github.com/vaadin/flow/issues/7553
Better code example ``` package org.vaadin.tatu; import java.io.Serializable; public class Fruit { private Season ripe; public Fruit(Season ripe) { this.ripe = ripe; } public void setRipe(Season ripe) { this.ripe =...
It is possible to construct custom TwinColSelect like component usign e.g. two Grid components, which have Drag'n'Drop enabled.
Just for those who are interested, there is TwinColSelect for Vaadin 14/23/24 in Directory, which actually supports Drag'n'Drop https://vaadin.com/directory/component/twincolselect
There was one fix, that was related to connector tracker in 8.16.0. That introduced a regression that was fixed in 8.16.1. But there is no changes in it between 8.16.1...
> Can you explain it what does the exception mean and when/why can it happen? I think the exception is possible only if connector id is null.
> Hi, can you give a statement if it can be caused by the vaadin 14 application? If you are using MPR and the Vaadin 8 application is embedded in...
@rPraml for me your latest comment seems not to be related to original question about the ConnectorTracker. So should you actually open a new ticket about this.