class UIContainer
A base view class that represents a container component with no specific layout or styling.
abstract
class UIContainer extends UIComponent
Constructor
- constructor(…content)Creates a new container view object with the provided view content.
Type Members
- type UIContainer.ContentRenderingEvent staticType definition for an event that’s emitted (only) on a container when content is being rendered.
- type UIContainer.Layout staticOptions for layout of components within a container.
- type UIContainer.SeparatorOptions staticOptions for the appearance of container separators.
Instance Members
- applyViewPreset(preset)Applies the provided preset properties to this object.
- findViewContent(type)Implementation of View.findViewContent() that searches within this container.
- delegateContentEvent(event, emitDelegate?) protectedDelegates events from content view objects.
- content readonlyThe list of all content view objects.
- layoutOptions related to layout of content components within this container.
- paddingPadding around contained elements, in pixels or CSS length with unit, or an object with separate offset values.
- spacingSpace between components, in pixels or CSS length with unit.
- asyncContentRenderingTrue if content views should be rendered asynchronously.
- allowFocusTrue if this container itself may receive direct input focus.
- allowKeyboardFocusTrue if this container itself may receive input focus using the keyboard (e.g. Tab key).
Inherited Members
- hiddenTrue if the component should be hidden from view.
- positionOptions related to the position of this component.
- accessibleRoleWAI-ARIA role for this component, if applicable.
- accessibleLabelWAI-ARIA label text for this component (not tooltip), if applicable.
- requestFocus()Requests input focus on this component.
- requestFocusNext()Requests input focus for the next sibling component.
- requestFocusPrevious()Requests input focus for the previous sibling component.
- render(callback)Triggers asynchronous rendering for this component, and all contained components, if any.
- lastRenderOutputLast rendered output, if any; set by the UI component renderer.
- emit(event)Emits an event, immediately calling all event handlers.
- emitChange(name?, data?)Emits a change event, an instance of ManagedChangeEvent.
- listen(handler)Adds a handler for all events emitted by this object.
- isUnlinked()Returns true if the object has been unlinked.
- unlink()Unlinks this managed object.
- beforeUnlink() protectedA method that’s called immediately before unlinking an object, can be overridden.
- attach(target, observer?) protectedAttaches the provided managed object to this object.
- autoAttach(propertyName, observer?) protectedObserves a property, so that any object assigned to it is attached immediately.