You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm getting this runtime exception while trying to use a popup in a grid:
Caused by: java.lang.IllegalAccessError: class com.vaadin.componentfactory.ComponentWithPopupRenderer tried to access method 'void com.vaadin.flow.data.renderer.LitRenderer.<init>()' (com.vaadin.componentfactory.ComponentWithPopupRenderer and com.vaadin.flow.data.renderer.LitRenderer are in unnamed module of loader 'app')
at com.vaadin.componentfactory.ComponentWithPopupRenderer.<init>(ComponentWithPopupRenderer.java:55)
When I open ComponentWithPopupRenderer in my IDE it's indicating that there is no empty super constructor in ComponentRenderer.
Trying to compile it on my own confirms the API mismatch:
java: no suitable constructor found for ComponentRenderer(no arguments)
constructor com.vaadin.flow.data.renderer.ComponentRenderer.ComponentRenderer(com.vaadin.flow.function.SerializableSupplier<com.vaadin.flow.component.Component>,com.vaadin.flow.function.SerializableBiConsumer<com.vaadin.flow.component.Component,ITEM>) is not applicable
(actual and formal argument lists differ in length)
constructor com.vaadin.flow.data.renderer.ComponentRenderer.ComponentRenderer(com.vaadin.flow.function.SerializableSupplier<com.vaadin.flow.component.Component>) is not applicable
(actual and formal argument lists differ in length)
constructor com.vaadin.flow.data.renderer.ComponentRenderer.ComponentRenderer(com.vaadin.flow.function.SerializableFunction<ITEM,com.vaadin.flow.component.Component>) is not applicable
(actual and formal argument lists differ in length)
constructor com.vaadin.flow.data.renderer.ComponentRenderer.ComponentRenderer(com.vaadin.flow.function.SerializableFunction<ITEM,com.vaadin.flow.component.Component>,com.vaadin.flow.function.SerializableBiFunction<com.vaadin.flow.component.Component,ITEM,com.vaadin.flow.component.Component>) is not applicable
(actual and formal argument lists differ in length)
The text was updated successfully, but these errors were encountered:
I'm getting this runtime exception while trying to use a popup in a grid:
When I open
ComponentWithPopupRenderer
in my IDE it's indicating that there is no empty super constructor inComponentRenderer
.Trying to compile it on my own confirms the API mismatch:
The text was updated successfully, but these errors were encountered: