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
Currently, the content of a portlet is exported as a web component by adding an explicit WebComponentExporter subclass in parallel with the VaadinPortlet subclass.
This should not be required.
Acceptance criteria
The web component is exported behind the scenes, using the web component exporter feature
The web component tag (which needs to be unique for each VaadinPortlet subclass), is generated from the portlet name (defined in portlet.xml) or the subclass name (whichever is easier).
The abstract VaadinPortlet should be extends VaadinPortlet<VIEW extends Component> and take in the ViewClass so that the portlet can set up things by view interfaces
The text was updated successfully, but these errors were encountered:
Currently, the content of a portlet is exported as a web component by adding an explicit
WebComponentExporter
subclass in parallel with theVaadinPortlet
subclass.This should not be required.
Acceptance criteria
VaadinPortlet
subclass), is generated from the portlet name (defined inportlet.xml
) or the subclass name (whichever is easier).extends VaadinPortlet<VIEW extends Component>
and take in the ViewClass so that the portlet can set up things by view interfacesThe text was updated successfully, but these errors were encountered: