Package io.jmix.ui.component
Interface RelatedEntities<E>
- All Superinterfaces:
Component,Component.BelongToFrame,Component.Focusable,Component.HasCaption,Component.HasDescription,Component.HasIcon,HasHtmlCaption,HasHtmlDescription
- All Known Implementing Classes:
RelatedEntitiesImpl
@StudioComponent(caption="RelatedEntities",
category="Components",
xmlElement="relatedEntities",
icon="io/jmix/ui/icon/component/relatedEntities.svg",
canvasTextProperty="caption",
canvasBehaviour=POPUP_BUTTON,
documentationURL="https://docs.jmix.io/jmix/%VERSION%/ui/vcl/components/related-entities.html")
public interface RelatedEntities<E>
extends Component, Component.HasCaption, Component.BelongToFrame, Component.HasIcon, Component.Focusable, HasHtmlCaption, HasHtmlDescription
-
Nested Class Summary
Nested classes/interfaces inherited from interface io.jmix.ui.component.Component
Component.Alignment, Component.BelongToFrame, Component.Disposable, Component.Editable, Component.Focusable, Component.HasCaption, Component.HasDescription, Component.HasIcon, Component.HasXmlDescriptor, Component.Wrapper -
Field Summary
FieldsFields inherited from interface io.jmix.ui.component.Component
AUTO_SIZE, AUTO_SIZE_PX, FULL_SIZE -
Method Summary
Modifier and TypeMethodDescriptionvoidaddPropertyOption(PropertyOption property) voidremovePropertyOption(String property) voidsetExcludePropertiesRegex(String excludeRegex) voidsetListComponent(ListComponent<E> listComponent) voidsetOpenMode(OpenMode openMode) Methods inherited from interface io.jmix.ui.component.Component
addStyleName, getAlignment, getHeight, getHeightSizeUnit, getId, getParent, getStyleName, getWidth, getWidthSizeUnit, isEnabled, isEnabledRecursive, isResponsive, isVisible, isVisibleRecursive, removeStyleName, setAlignment, setEnabled, setHeight, setHeightAuto, setHeightFull, setId, setParent, setResponsive, setSizeAuto, setSizeFull, setStyleName, setVisible, setWidth, setWidthAuto, setWidthFull, unwrap, unwrapComposition, unwrapCompositionOrNull, unwrapOrNull, withUnwrapped, withUnwrappedCompositionMethods inherited from interface io.jmix.ui.component.Component.BelongToFrame
getFrame, setFrameMethods inherited from interface io.jmix.ui.component.Component.Focusable
focus, getTabIndex, isFocusable, setFocusable, setTabIndexMethods inherited from interface io.jmix.ui.component.Component.HasCaption
getCaption, setCaptionMethods inherited from interface io.jmix.ui.component.Component.HasDescription
getDescription, setDescriptionMethods inherited from interface io.jmix.ui.component.Component.HasIcon
getIcon, setIcon, setIconFromSetMethods inherited from interface io.jmix.ui.component.HasHtmlCaption
isCaptionAsHtml, setCaptionAsHtmlMethods inherited from interface io.jmix.ui.component.HasHtmlDescription
isDescriptionAsHtml, setDescriptionAsHtml
-
Field Details
-
NAME
- See Also:
-
-
Method Details
-
getOpenMode
OpenMode getOpenMode() -
setOpenMode
@StudioProperty(type=ENUMERATION, defaultValue="THIS_TAB", options={"NEW_TAB","THIS_TAB","DIALOG","NEW_WINDOW"}) void setOpenMode(OpenMode openMode) -
getExcludePropertiesRegex
-
setExcludePropertiesRegex
@StudioProperty(name="exclude", type=STRING) void setExcludePropertiesRegex(@Nullable String excludeRegex) -
addPropertyOption
-
removePropertyOption
-
getListComponent
-
setListComponent
@StudioProperty(name="for", type=COMPONENT_REF, required=true, options="io.jmix.ui.component.ListComponent") void setListComponent(@Nullable ListComponent<E> listComponent)
-