Package com.storedobject.vaadin
Class ContentWithHeader
java.lang.Object
com.vaadin.flow.component.Component
com.vaadin.flow.component.Composite<com.vaadin.flow.component.html.Div>
com.storedobject.vaadin.ContentWithHeader
- All Implemented Interfaces:
com.vaadin.flow.component.AttachNotifier
,com.vaadin.flow.component.DetachNotifier
,com.vaadin.flow.component.HasElement
,com.vaadin.flow.component.HasStyle
,Serializable
public class ContentWithHeader
extends com.vaadin.flow.component.Composite<com.vaadin.flow.component.html.Div>
A simple layout with a "header" portion and a scrollable "body" portion. The "header" portion will stick to the top.
- Author:
- Syam
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructor.ContentWithHeader
(com.vaadin.flow.component.Component header, com.vaadin.flow.component.Component body) Constructor. -
Method Summary
Modifier and TypeMethodDescriptioncom.vaadin.flow.component.Component
getBody()
Get theComponent
from the body portion.com.vaadin.flow.component.Component
Get theButtonLayout
from the header portion.protected com.vaadin.flow.component.html.Div
void
setBody
(com.vaadin.flow.component.Component body) Set the body portion.void
setHeader
(com.vaadin.flow.component.Component header) Set the header portion.Methods inherited from class com.vaadin.flow.component.Composite
getChildren, getContent, getElement
Methods inherited from class com.vaadin.flow.component.Component
addListener, findAncestor, fireEvent, from, get, getEventBus, getId, getListeners, getLocale, getParent, getTranslation, getTranslation, getTranslation, getTranslation, getTranslation, getTranslation, getUI, hasListener, isAttached, isTemplateMapped, isVisible, onAttach, onDetach, onEnabledStateChanged, removeFromParent, scrollIntoView, scrollIntoView, set, setElement, setId, setVisible
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.vaadin.flow.component.AttachNotifier
addAttachListener
Methods inherited from interface com.vaadin.flow.component.DetachNotifier
addDetachListener
Methods inherited from interface com.vaadin.flow.component.HasStyle
addClassName, addClassNames, getClassName, getClassNames, getStyle, hasClassName, removeClassName, removeClassNames, setClassName, setClassName
-
Constructor Details
-
ContentWithHeader
public ContentWithHeader()Constructor. -
ContentWithHeader
public ContentWithHeader(com.vaadin.flow.component.Component header, com.vaadin.flow.component.Component body) Constructor.- Parameters:
header
- Header portionbody
- Body portion
-
-
Method Details
-
initContent
protected com.vaadin.flow.component.html.Div initContent()- Overrides:
initContent
in classcom.vaadin.flow.component.Composite<com.vaadin.flow.component.html.Div>
-
setHeader
public void setHeader(com.vaadin.flow.component.Component header) Set the header portion.- Parameters:
header
- Component to set as the header portion.
-
getHeader
public com.vaadin.flow.component.Component getHeader()Get theButtonLayout
from the header portion.- Returns:
- The header.
-
getBody
public com.vaadin.flow.component.Component getBody()Get theComponent
from the body portion.- Returns:
- The body.
-
setBody
public void setBody(com.vaadin.flow.component.Component body) Set the body portion.- Parameters:
body
- Component to set as the body portion
-