Hi, does this work with Vaadin 14? I tried to add it a Vertical Layout and it doesn’t let me. I receive a
The constructor VerticalLayout(Gantt) is undefined
because Gantt doesn’t extend from a Component but an AbstractComponent( which is Vaadin v8 class?)
Apparently there is a difference in components between v8 and v10
v10 - Custom created components extends from Components class
v8 - Custom created components like this Gantt chart extends AbstractComponent Class which implements a Component
And they aren’t backward compatible. Any help?